| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chromecast/build/tests/cast_test.gni") | 10 import("//chromecast/build/tests/cast_test.gni") |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 "//ui/gl:test_support", | 302 "//ui/gl:test_support", |
| 303 ] | 303 ] |
| 304 } | 304 } |
| 305 | 305 |
| 306 test("cast_shell_browsertests") { | 306 test("cast_shell_browsertests") { |
| 307 deps = [ | 307 deps = [ |
| 308 ":cast_shell_lib", | 308 ":cast_shell_lib", |
| 309 "//chromecast/app:test_support", | 309 "//chromecast/app:test_support", |
| 310 "//chromecast/browser:browsertests", | 310 "//chromecast/browser:browsertests", |
| 311 ] | 311 ] |
| 312 |
| 313 data_deps = [ |
| 314 ":chromecast_locales_pak", |
| 315 ] |
| 312 } | 316 } |
| 313 | 317 |
| 314 group("cast_shell_lib") { | 318 group("cast_shell_lib") { |
| 315 data_deps = [ | 319 data_deps = [ |
| 316 ":cast_shell_pak", | 320 ":cast_shell_pak", |
| 317 ] | 321 ] |
| 318 | 322 |
| 319 deps = [ | 323 deps = [ |
| 320 "//chromecast/app", | 324 "//chromecast/app", |
| 321 "//chromecast/browser", | 325 "//chromecast/browser", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] | 465 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] |
| 462 | 466 |
| 463 deps = [ | 467 deps = [ |
| 464 ":cast_shell_apk_assets", | 468 ":cast_shell_apk_assets", |
| 465 "//base:base_java", | 469 "//base:base_java", |
| 466 "//chromecast/android:libcast_shell_android", | 470 "//chromecast/android:libcast_shell_android", |
| 467 "//chromecast/browser/android:cast_shell_java", | 471 "//chromecast/browser/android:cast_shell_java", |
| 468 ] | 472 ] |
| 469 } | 473 } |
| 470 } | 474 } |
| OLD | NEW |