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

Side by Side Diff: ash/BUILD.gn

Issue 1412813003: This CL replaces user_manager::UserID with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@468875--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Create-AccountID-structure-part2--user_names
Patch Set: Fix Win GN build. Created 5 years, 1 month 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/DEPS » ('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") ],
11 "scope", 11 "scope",
12 [ "ash.gyp" ]) 12 [ "ash.gyp" ])
13 13
14 component("ash") { 14 component("ash") {
15 sources = gypi_values.ash_sources 15 sources = gypi_values.ash_sources
16 16
17 configs += [ "//build/config:precompiled_headers" ] 17 configs += [ "//build/config:precompiled_headers" ]
18 defines = [ "ASH_IMPLEMENTATION" ] 18 defines = [ "ASH_IMPLEMENTATION" ]
19 19
20 public_deps = [ 20 public_deps = [
21 "//ash/resources", 21 "//ash/resources",
22 "//ash/strings", 22 "//ash/strings",
23 ] 23 ]
24 deps = [ 24 deps = [
25 "//base", 25 "//base",
26 "//base:i18n", 26 "//base:i18n",
27 "//base/third_party/dynamic_annotations", 27 "//base/third_party/dynamic_annotations",
28 "//cc", 28 "//cc",
29 "//components/device_event_log", 29 "//components/device_event_log",
30 "//components/signin/core/account_id",
30 "//components/user_manager", 31 "//components/user_manager",
31 "//components/wallpaper", 32 "//components/wallpaper",
32 "//content/public/browser", 33 "//content/public/browser",
33 "//media", 34 "//media",
34 "//net", 35 "//net",
35 "//skia", 36 "//skia",
36 "//third_party/icu", 37 "//third_party/icu",
37 "//ui/accessibility", 38 "//ui/accessibility",
38 "//ui/app_list", 39 "//ui/app_list",
39 "//ui/aura", 40 "//ui/aura",
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 283
283 deps = [ 284 deps = [
284 ":ash", 285 ":ash",
285 ":ash_with_content", 286 ":ash_with_content",
286 ":test_support", 287 ":test_support",
287 "//ash/resources", 288 "//ash/resources",
288 "//ash/strings", 289 "//ash/strings",
289 "//base", 290 "//base",
290 "//base/allocator", 291 "//base/allocator",
291 "//base/test:test_support", 292 "//base/test:test_support",
293 "//components/signin/core/account_id",
292 "//components/user_manager", 294 "//components/user_manager",
293 "//content/public/browser", 295 "//content/public/browser",
294 "//content/test:test_support", 296 "//content/test:test_support",
295 "//skia", 297 "//skia",
296 "//testing/gtest", 298 "//testing/gtest",
297 "//third_party/icu", 299 "//third_party/icu",
298 "//ui/accessibility", 300 "//ui/accessibility",
299 "//ui/aura", 301 "//ui/aura",
300 "//ui/aura:test_support", 302 "//ui/aura:test_support",
301 "//ui/base", 303 "//ui/base",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 configs += [ "//build/config/win:windowed" ] 402 configs += [ "//build/config/win:windowed" ]
401 deps += [ "//sandbox" ] 403 deps += [ "//sandbox" ]
402 } 404 }
403 405
404 if (is_chromeos) { 406 if (is_chromeos) {
405 deps += [ "//device/bluetooth" ] 407 deps += [ "//device/bluetooth" ]
406 } 408 }
407 } 409 }
408 # When adding support for isolates, please have a look at run-time dependencies 410 # When adding support for isolates, please have a look at run-time dependencies
409 # in the ash_unittests_run target in ash.gyp. 411 # in the ash_unittests_run target in ash.gyp.
OLDNEW
« no previous file with comments | « no previous file | ash/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698