| OLD | NEW |
| 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/json_schema_api.gni") | 5 import("//build/json_schema_api.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", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 ":ax_gen", | 38 ":ax_gen", |
| 39 "//base", | 39 "//base", |
| 40 "//ui/gfx", | 40 "//ui/gfx", |
| 41 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
| 42 ] | 42 ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 source_set("test_support") { | 45 source_set("test_support") { |
| 46 sources = [ | 46 sources = [ |
| 47 "tree_generator.cc", | 47 "tree_generator.cc", |
| 48 "tree_generator.h" | 48 "tree_generator.h", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 ":accessibility" | 52 ":accessibility", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 test("accessibility_unittests") { | 56 test("accessibility_unittests") { |
| 57 sources = [ | 57 sources = [ |
| 58 "ax_generated_tree_unittest.cc", | 58 "ax_generated_tree_unittest.cc", |
| 59 "ax_tree_serializer_unittest.cc", | 59 "ax_tree_serializer_unittest.cc", |
| 60 "ax_tree_unittest.cc", | 60 "ax_tree_unittest.cc", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 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 json_schema_api("ax_gen") { | 74 json_schema_api("ax_gen") { |
| 75 sources = [ "ax_enums.idl" ] | 75 sources = [ |
| 76 deps = [ "//base/third_party/dynamic_annotations" ] | 76 "ax_enums.idl", |
| 77 ] |
| 78 deps = [ |
| 79 "//base/third_party/dynamic_annotations", |
| 80 ] |
| 77 root_namespace = "ui" | 81 root_namespace = "ui" |
| 78 schemas = true | 82 schemas = true |
| 79 } | 83 } |
| OLD | NEW |