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

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

Issue 597713002: Move json schema compiler target into build/ to match gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo_wk_dep
Patch Set: Created 6 years, 2 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 | « extensions/generated_extensions_api.gni ('k') | no next file » | 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("//extensions/generated_extensions_api.gni") 5 import("//build/json_schema_compile.gni")
6 6
7 component("accessibility") { 7 component("accessibility") {
8 sources = [ 8 sources = [
9 "ax_node.cc", 9 "ax_node.cc",
10 "ax_node.h", 10 "ax_node.h",
11 "ax_node_data.cc", 11 "ax_node_data.cc",
12 "ax_node_data.h", 12 "ax_node_data.h",
13 "ax_serializable_tree.cc", 13 "ax_serializable_tree.cc",
14 "ax_serializable_tree.h", 14 "ax_serializable_tree.h",
15 "ax_text_utils.cc", 15 "ax_text_utils.cc",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 ":accessibility", 64 ":accessibility",
65 ":test_support", 65 ":test_support",
66 "//base", 66 "//base",
67 "//base/test:run_all_unittests", 67 "//base/test:run_all_unittests",
68 "//testing/gtest", 68 "//testing/gtest",
69 "//ui/gfx", 69 "//ui/gfx",
70 "//ui/gfx/geometry", 70 "//ui/gfx/geometry",
71 ] 71 ]
72 } 72 }
73 73
74 generated_extensions_api("ax_gen") { 74 json_schema_compile("ax_gen") {
brettw 2014/09/23 21:42:57 I wonder if we should pick a different name. I rec
75 sources = [ "ax_enums.idl" ] 75 sources = [ "ax_enums.idl" ]
76 deps = [ "//base/third_party/dynamic_annotations" ] 76 deps = [ "//base/third_party/dynamic_annotations" ]
77 root_namespace = "ui" 77 root_namespace = "ui"
78 schemas = true 78 schemas = true
79 } 79 }
OLDNEW
« no previous file with comments | « extensions/generated_extensions_api.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698