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

Unified Diff: ui/accessibility/BUILD.gn

Issue 287233002: Start work on GN build for content/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/variables.cc ('k') | ui/accessibility/accessibility.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/BUILD.gn
diff --git a/ui/accessibility/BUILD.gn b/ui/accessibility/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..66a04da74f93e78fbbbe653679d87d8d9a1d248e
--- /dev/null
+++ b/ui/accessibility/BUILD.gn
@@ -0,0 +1,61 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//extensions/generated_extensions_api.gni")
+
+component("accessibility") {
+ sources = [
+ "ax_node.cc",
+ "ax_node.h",
+ "ax_node_data.cc",
+ "ax_node_data.h",
+ "ax_serializable_tree.cc",
+ "ax_serializable_tree.h",
+ "ax_text_utils.cc",
+ "ax_text_utils.h",
+ "ax_tree.cc",
+ "ax_tree.h",
+ "ax_tree_serializer.cc",
+ "ax_tree_serializer.h",
+ "ax_tree_source.h",
+ "ax_tree_update.cc",
+ "ax_tree_update.h",
+ "ax_view_state.cc",
+ "ax_view_state.h",
+ ]
+
+ defines = [ "ACCESSIBILITY_IMPLEMENTATION" ]
+
+ forward_dependent_configs_from = [ ":ax_gen" ]
+
+ deps = [
+ ":ax_gen",
+ "//base",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ ]
+}
+
+test("accessibility_unittests") {
+ sources = [
+ "ax_generated_tree_unittest.cc",
+ "ax_tree_serializer_unittest.cc",
+ "ax_tree_unittest.cc",
+ ]
+
+ deps = [
+ ":accessibility",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//testing/gtest",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ ]
+}
+
+generated_extensions_api("ax_gen") {
+ sources = [ "ax_enums.idl" ]
+ root_namespace = ""
+ impl_dir = "."
+}
« no previous file with comments | « tools/gn/variables.cc ('k') | ui/accessibility/accessibility.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698