Chromium Code Reviews| 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/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/json_schema_compiler/json_schema_api.gni") | 10 import("//tools/json_schema_compiler/json_schema_api.gni") |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 34 "ax_tree.cc", | 34 "ax_tree.cc", |
| 35 "ax_tree.h", | 35 "ax_tree.h", |
| 36 "ax_tree_combiner.cc", | 36 "ax_tree_combiner.cc", |
| 37 "ax_tree_combiner.h", | 37 "ax_tree_combiner.h", |
| 38 "ax_tree_data.cc", | 38 "ax_tree_data.cc", |
| 39 "ax_tree_data.h", | 39 "ax_tree_data.h", |
| 40 "ax_tree_serializer.cc", | 40 "ax_tree_serializer.cc", |
| 41 "ax_tree_serializer.h", | 41 "ax_tree_serializer.h", |
| 42 "ax_tree_source.h", | 42 "ax_tree_source.h", |
| 43 "ax_tree_update.h", | 43 "ax_tree_update.h", |
| 44 "ax_utils.cc", | |
|
tapted
2017/02/09 02:45:18
I've seen feedback that we we try to avoid "foo_ut
Patti Lor
2017/02/09 23:11:23
Fair point, done! Thanks for the suggestion
| |
| 45 "ax_utils.h", | |
| 44 "platform/ax_platform_node.cc", | 46 "platform/ax_platform_node.cc", |
| 45 "platform/ax_platform_node.h", | 47 "platform/ax_platform_node.h", |
| 46 "platform/ax_platform_node_base.cc", | 48 "platform/ax_platform_node_base.cc", |
| 47 "platform/ax_platform_node_base.h", | 49 "platform/ax_platform_node_base.h", |
| 48 "platform/ax_platform_node_delegate.h", | 50 "platform/ax_platform_node_delegate.h", |
| 49 "platform/ax_platform_node_mac.h", | 51 "platform/ax_platform_node_mac.h", |
| 50 "platform/ax_platform_node_mac.mm", | 52 "platform/ax_platform_node_mac.mm", |
| 51 "platform/ax_platform_node_win.cc", | 53 "platform/ax_platform_node_win.cc", |
| 52 "platform/ax_platform_node_win.h", | 54 "platform/ax_platform_node_win.h", |
| 53 ] | 55 ] |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 165 | 167 |
| 166 fuzzer_test("ax_tree_fuzzer") { | 168 fuzzer_test("ax_tree_fuzzer") { |
| 167 sources = [ | 169 sources = [ |
| 168 "ax_tree_fuzzer.cc", | 170 "ax_tree_fuzzer.cc", |
| 169 ] | 171 ] |
| 170 | 172 |
| 171 deps = [ | 173 deps = [ |
| 172 ":accessibility", | 174 ":accessibility", |
| 173 ] | 175 ] |
| 174 } | 176 } |
| OLD | NEW |