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

Side by Side Diff: ash/BUILD.gn

Issue 1684933002: Fix ash 'gn check' errors; whitelist target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chromeos config too. Created 4 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 | « .gn ('k') | ash/accelerators/accelerator_controller.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 assert(use_aura) 9 assert(use_aura)
10 assert(enable_hidpi) 10 assert(enable_hidpi)
(...skipping 27 matching lines...) Expand all
38 "//net", 38 "//net",
39 "//skia", 39 "//skia",
40 "//third_party/icu", 40 "//third_party/icu",
41 "//ui/accessibility", 41 "//ui/accessibility",
42 "//ui/app_list", 42 "//ui/app_list",
43 "//ui/aura", 43 "//ui/aura",
44 "//ui/base", 44 "//ui/base",
45 "//ui/base:ui_data_pack", 45 "//ui/base:ui_data_pack",
46 "//ui/base/ime", 46 "//ui/base/ime",
47 "//ui/compositor", 47 "//ui/compositor",
48 "//ui/display/types",
48 "//ui/events", 49 "//ui/events",
49 "//ui/events:events_base", 50 "//ui/events:events_base",
50 "//ui/events:gesture_detection", 51 "//ui/events:gesture_detection",
51 "//ui/events/devices", 52 "//ui/events/devices",
52 "//ui/gfx", 53 "//ui/gfx",
53 "//ui/gfx/geometry", 54 "//ui/gfx/geometry",
54 "//ui/keyboard", 55 "//ui/keyboard",
55 "//ui/message_center", 56 "//ui/message_center",
57 "//ui/native_theme",
58 "//ui/platform_window",
56 "//ui/platform_window/stub", 59 "//ui/platform_window/stub",
57 "//ui/resources", 60 "//ui/resources",
58 "//ui/strings", 61 "//ui/strings",
59 "//ui/views", 62 "//ui/views",
60 "//ui/wm", 63 "//ui/wm",
61 "//url", 64 "//url",
62 ] 65 ]
63 66
64 if (is_win) { 67 if (is_win) {
65 sources -= [ 68 sources -= [
(...skipping 28 matching lines...) Expand all
94 "//ui/events/ozone:events_ozone", 97 "//ui/events/ozone:events_ozone",
95 "//ui/ozone", 98 "//ui/ozone",
96 ] 99 ]
97 } 100 }
98 101
99 if (is_chromeos) { 102 if (is_chromeos) {
100 deps += [ 103 deps += [
101 "//chromeos", 104 "//chromeos",
102 "//chromeos:power_manager_proto", 105 "//chromeos:power_manager_proto",
103 "//device/bluetooth", 106 "//device/bluetooth",
107 "//third_party/WebKit/public:blink_headers",
sky 2016/02/10 00:04:35 Please add a TODO to remove this. ash_with_content
msw 2016/02/10 20:30:22 Done.
104 "//third_party/qcms", 108 "//third_party/qcms",
105 "//ui/chromeos:ui_chromeos", 109 "//ui/chromeos:ui_chromeos",
106 "//ui/chromeos/resources", 110 "//ui/chromeos/resources",
107 "//ui/chromeos/strings", 111 "//ui/chromeos/strings",
108 "//ui/display", 112 "//ui/display",
109 "//ui/display/util", 113 "//ui/display/util",
110 ] 114 ]
111 } else { 115 } else {
112 sources -= [ 116 sources -= [
113 "accelerators/key_hold_detector.cc", 117 "accelerators/key_hold_detector.cc",
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 configs += [ "//build/config/win:windowed" ] 412 configs += [ "//build/config/win:windowed" ]
409 deps += [ "//sandbox" ] 413 deps += [ "//sandbox" ]
410 } 414 }
411 415
412 if (is_chromeos) { 416 if (is_chromeos) {
413 deps += [ "//device/bluetooth" ] 417 deps += [ "//device/bluetooth" ]
414 } 418 }
415 } 419 }
416 # When adding support for isolates, please have a look at run-time dependencies 420 # When adding support for isolates, please have a look at run-time dependencies
417 # in the ash_unittests_run target in ash.gyp. 421 # in the ash_unittests_run target in ash.gyp.
OLDNEW
« no previous file with comments | « .gn ('k') | ash/accelerators/accelerator_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698