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

Side by Side Diff: ui/views/BUILD.gn

Issue 420653003: MacViews: Accessibility bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix build Created 6 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 | Annotate | Revision Log
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 7
8 gypi_values = exec_script( 8 gypi_values = exec_script(
9 "//build/gypi_to_gn.py", 9 "//build/gypi_to_gn.py",
10 [ rebase_path("views.gyp") ], 10 [ rebase_path("views.gyp") ],
11 "scope", 11 "scope",
12 [ "views.gyp" ]) 12 [ "views.gyp" ])
13 13
14 component("views") { 14 component("views") {
15 sources = gypi_values.views_sources 15 sources = gypi_values.views_sources
16 16
17 defines = [ "VIEWS_IMPLEMENTATION" ] 17 defines = [ "VIEWS_IMPLEMENTATION" ]
18 18
19 deps = [ 19 deps = [
20 "//base", 20 "//base",
21 "//base:i18n", 21 "//base:i18n",
22 "//base/third_party/dynamic_annotations", 22 "//base/third_party/dynamic_annotations",
23 "//skia", 23 "//skia",
24 "//third_party/icu", 24 "//third_party/icu",
25 "//third_party/wtl", 25 "//third_party/wtl",
26 "//ui/accessibility", 26 "//ui/accessibility",
27 "//ui/accessibility_platform",
27 "//ui/accessibility:ax_gen", 28 "//ui/accessibility:ax_gen",
28 "//ui/aura", 29 "//ui/aura",
29 "//ui/base", 30 "//ui/base",
30 "//ui/compositor", 31 "//ui/compositor",
31 "//ui/events", 32 "//ui/events",
32 "//ui/events:events_base", 33 "//ui/events:events_base",
33 "//ui/events/platform", 34 "//ui/events/platform",
34 "//ui/gfx", 35 "//ui/gfx",
35 "//ui/gfx/geometry", 36 "//ui/gfx/geometry",
36 "//ui/native_theme", 37 "//ui/native_theme",
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "//ui/compositor", 251 "//ui/compositor",
251 "//ui/resources", 252 "//ui/resources",
252 "//ui/resources:ui_test_pak", 253 "//ui/resources:ui_test_pak",
253 "//ui/string", 254 "//ui/string",
254 "//ui/wm", 255 "//ui/wm",
255 ] 256 ]
256 } 257 }
257 } 258 }
258 259
259 } # if false 260 } # if false
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698