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

Side by Side Diff: ash/BUILD.gn

Issue 889323003: Split ui/base/ime into a new component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cros x11 GN build Created 5 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 | ash/ash.gyp » ('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 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("ash.gyp") ], 10 [ rebase_path("ash.gyp") ],
(...skipping 18 matching lines...) Expand all
29 "//components/wallpaper", 29 "//components/wallpaper",
30 "//content/public/browser", 30 "//content/public/browser",
31 "//media", 31 "//media",
32 "//net", 32 "//net",
33 "//skia", 33 "//skia",
34 "//third_party/icu", 34 "//third_party/icu",
35 "//ui/accessibility", 35 "//ui/accessibility",
36 "//ui/app_list", 36 "//ui/app_list",
37 "//ui/aura", 37 "//ui/aura",
38 "//ui/base", 38 "//ui/base",
39 "//ui/base/ime",
39 "//ui/compositor", 40 "//ui/compositor",
40 "//ui/events", 41 "//ui/events",
41 "//ui/events:events_base", 42 "//ui/events:events_base",
42 "//ui/events:gesture_detection", 43 "//ui/events:gesture_detection",
43 "//ui/events/devices", 44 "//ui/events/devices",
44 "//ui/gfx", 45 "//ui/gfx",
45 "//ui/gfx/geometry", 46 "//ui/gfx/geometry",
46 "//ui/keyboard", 47 "//ui/keyboard",
47 "//ui/message_center", 48 "//ui/message_center",
48 "//ui/resources", 49 "//ui/resources",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 223
223 #"//chrome:packed_resources", TODO(GYP) 224 #"//chrome:packed_resources", TODO(GYP)
224 "//content", 225 "//content",
225 "//content/shell:content_shell_lib", 226 "//content/shell:content_shell_lib",
226 "//net", 227 "//net",
227 "//skia", 228 "//skia",
228 "//third_party/icu", 229 "//third_party/icu",
229 "//ui/app_list", 230 "//ui/app_list",
230 "//ui/aura", 231 "//ui/aura",
231 "//ui/base", 232 "//ui/base",
233 "//ui/base/ime",
232 "//ui/compositor", 234 "//ui/compositor",
233 "//ui/events", 235 "//ui/events",
234 "//ui/events:events_base", 236 "//ui/events:events_base",
235 "//ui/gfx", 237 "//ui/gfx",
236 "//ui/gfx/geometry", 238 "//ui/gfx/geometry",
237 "//ui/keyboard", 239 "//ui/keyboard",
238 "//ui/message_center", 240 "//ui/message_center",
239 "//ui/resources", 241 "//ui/resources",
240 "//ui/views", 242 "//ui/views",
241 "//ui/views:test_support", 243 "//ui/views:test_support",
(...skipping 17 matching lines...) Expand all
259 "//components/user_manager", 261 "//components/user_manager",
260 "//content/public/browser", 262 "//content/public/browser",
261 "//content/test:test_support", 263 "//content/test:test_support",
262 "//skia", 264 "//skia",
263 "//testing/gtest", 265 "//testing/gtest",
264 "//third_party/icu", 266 "//third_party/icu",
265 "//ui/accessibility", 267 "//ui/accessibility",
266 "//ui/aura", 268 "//ui/aura",
267 "//ui/aura:test_support", 269 "//ui/aura:test_support",
268 "//ui/base", 270 "//ui/base",
271 "//ui/base/ime",
269 "//ui/base:test_support", 272 "//ui/base:test_support",
270 "//ui/compositor", 273 "//ui/compositor",
271 "//ui/compositor:test_support", 274 "//ui/compositor:test_support",
272 "//ui/events", 275 "//ui/events",
273 "//ui/events/devices", 276 "//ui/events/devices",
274 "//ui/events:test_support", 277 "//ui/events:test_support",
275 "//ui/events:gesture_detection", 278 "//ui/events:gesture_detection",
276 "//ui/gfx", 279 "//ui/gfx",
277 "//ui/gfx/geometry", 280 "//ui/gfx/geometry",
278 "//ui/keyboard", 281 "//ui/keyboard",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 "//skia", 391 "//skia",
389 "//testing/gtest", 392 "//testing/gtest",
390 "//ui/accessibility", 393 "//ui/accessibility",
391 ] 394 ]
392 395
393 if (is_chromeos) { 396 if (is_chromeos) {
394 deps += [ "//ui/display" ] 397 deps += [ "//ui/display" ]
395 } 398 }
396 } 399 }
397 } 400 }
OLDNEW
« no previous file with comments | « no previous file | ash/ash.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698