| # Copyright 2024 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| assert(is_chromeos) |
| |
| static_library("gemini_app") { |
| sources = [ |
| "gemini_app_tab_helper.cc", |
| "gemini_app_tab_helper.h", |
| ] |
| |
| public_deps = [ |
| "//base", |
| "//content/public/browser", |
| ] |
| |
| deps = [ "//chromeos/constants" ] |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| |
| sources = [ "gemini_app_tab_helper_unittest.cc" ] |
| |
| deps = [ |
| ":gemini_app", |
| "//base", |
| "//base/test:test_support", |
| "//chrome/browser/profiles:profile", |
| "//chrome/browser/ui", |
| "//chrome/browser/ui/tabs:test_support", |
| "//chrome/test:test_support", |
| "//chromeos/constants", |
| "//content/public/browser", |
| "//content/test:test_support", |
| "//testing/gtest", |
| ] |
| } |