Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: chromecast/BUILD.gn

Issue 2636303002: [Chromecast] Add support for z-order and window focus. (Closed)
Patch Set: reviewer feedback Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chromecast/graphics/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "//ppapi:ppapi_unittests", 42 "//ppapi:ppapi_unittests",
43 "//sandbox/linux:sandbox_linux_unittests", 43 "//sandbox/linux:sandbox_linux_unittests",
44 "//sql:sql_unittests", 44 "//sql:sql_unittests",
45 "//storage/browser:storage_unittests", 45 "//storage/browser:storage_unittests",
46 "//third_party/cacheinvalidation:cacheinvalidation_unittests", 46 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
47 "//ui/base:ui_base_unittests", 47 "//ui/base:ui_base_unittests",
48 ] 48 ]
49 49
50 if (!is_cast_audio_only) { 50 if (!is_cast_audio_only) {
51 tests += [ "//gpu:gpu_unittests" ] 51 tests += [ "//gpu:gpu_unittests" ]
52
53 if (use_aura) {
54 tests += [ "//chromecast/graphics:cast_graphics_unittests" ]
55 }
52 } 56 }
53 57
54 if (is_linux) { 58 if (is_linux) {
55 tests += [ "//chromecast/crash:cast_crash_unittests" ] 59 tests += [ "//chromecast/crash:cast_crash_unittests" ]
56 } 60 }
57 61
58 if (!is_android && use_alsa) { 62 if (!is_android && use_alsa) {
59 tests += [ "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unitte sts" ] 63 tests += [ "//chromecast/media/cma/backend/alsa:cast_alsa_cma_backend_unitte sts" ]
60 } 64 }
61 65
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 shared_libraries = [ "//chromecast/android:libcast_shell_android" ] 459 shared_libraries = [ "//chromecast/android:libcast_shell_android" ]
456 460
457 deps = [ 461 deps = [
458 ":cast_shell_apk_assets", 462 ":cast_shell_apk_assets",
459 "//base:base_java", 463 "//base:base_java",
460 "//chromecast/android:libcast_shell_android", 464 "//chromecast/android:libcast_shell_android",
461 "//chromecast/browser/android:cast_shell_java", 465 "//chromecast/browser/android:cast_shell_java",
462 ] 466 ]
463 } 467 }
464 } 468 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/graphics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698