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

Side by Side Diff: ash/BUILD.gn

Issue 2193563002: ash: Refactor autoclick common code to ash/autoclick/common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: deps Created 4 years, 4 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/autoclick/autoclick_controller.h » ('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 import("//ui/base/ui_features.gni") 8 import("//ui/base/ui_features.gni")
9 9
10 assert(use_aura) 10 assert(use_aura)
11 assert(enable_hidpi) 11 assert(enable_hidpi)
12 12
13 gypi_values = exec_script("//build/gypi_to_gn.py", 13 gypi_values = exec_script("//build/gypi_to_gn.py",
14 [ rebase_path("ash.gyp") ], 14 [ rebase_path("ash.gyp") ],
15 "scope", 15 "scope",
16 [ "ash.gyp" ]) 16 [ "ash.gyp" ])
17 17
18 component("ash") { 18 component("ash") {
19 sources = gypi_values.ash_sources 19 sources = gypi_values.ash_sources
20 20
21 configs += [ "//build/config:precompiled_headers" ] 21 configs += [ "//build/config:precompiled_headers" ]
22 defines = [ "ASH_IMPLEMENTATION" ] 22 defines = [ "ASH_IMPLEMENTATION" ]
23 23
24 public_deps = [ 24 public_deps = [
25 "//ash/common/strings", 25 "//ash/common/strings",
26 "//ash/resources", 26 "//ash/resources",
27 ] 27 ]
28 deps = [ 28 deps = [
29 "//ash/autoclick/common:autoclick",
29 "//ash/touch_hud", 30 "//ash/touch_hud",
30 "//base", 31 "//base",
31 "//base:i18n", 32 "//base:i18n",
32 "//base/third_party/dynamic_annotations", 33 "//base/third_party/dynamic_annotations",
33 "//cc", 34 "//cc",
34 "//components/device_event_log", 35 "//components/device_event_log",
35 "//components/onc", 36 "//components/onc",
36 "//components/signin/core/account_id", 37 "//components/signin/core/account_id",
37 "//components/user_manager", 38 "//components/user_manager",
38 "//components/wallpaper", 39 "//components/wallpaper",
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 342
342 test("ash_unittests") { 343 test("ash_unittests") {
343 sources = gypi_values.ash_unittests_sources 344 sources = gypi_values.ash_unittests_sources
344 configs += [ "//build/config:precompiled_headers" ] 345 configs += [ "//build/config:precompiled_headers" ]
345 346
346 deps = [ 347 deps = [
347 ":ash", 348 ":ash",
348 ":ash_with_content", 349 ":ash_with_content",
349 ":test_support", 350 ":test_support",
350 ":test_support_with_content", 351 ":test_support_with_content",
352 "//ash/autoclick/common:autoclick",
351 "//ash/common/strings", 353 "//ash/common/strings",
352 "//ash/resources", 354 "//ash/resources",
353 "//ash/touch_hud", 355 "//ash/touch_hud",
354 "//base", 356 "//base",
355 "//base/test:test_support", 357 "//base/test:test_support",
356 "//components/signin/core/account_id", 358 "//components/signin/core/account_id",
357 "//components/user_manager", 359 "//components/user_manager",
358 "//content/public/browser", 360 "//content/public/browser",
359 "//content/test:test_support", 361 "//content/test:test_support",
360 "//mojo/edk/system", 362 "//mojo/edk/system",
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 configs += [ "//build/config/win:windowed" ] 488 configs += [ "//build/config/win:windowed" ]
487 deps += [ "//sandbox" ] 489 deps += [ "//sandbox" ]
488 } 490 }
489 491
490 if (is_chromeos) { 492 if (is_chromeos) {
491 deps += [ "//device/bluetooth" ] 493 deps += [ "//device/bluetooth" ]
492 } 494 }
493 } 495 }
494 # When adding support for isolates, please have a look at run-time dependencies 496 # When adding support for isolates, please have a look at run-time dependencies
495 # in the ash_unittests_run target in ash.gyp. 497 # in the ash_unittests_run target in ash.gyp.
OLDNEW
« no previous file with comments | « no previous file | ash/autoclick/autoclick_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698