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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 | 65 |
| 66 if (is_win) { | 66 if (is_win) { |
| 67 public_deps += [ "//third_party/iaccessible2" ] | 67 public_deps += [ "//third_party/iaccessible2" ] |
| 68 } | 68 } |
| 69 | 69 |
| 70 if (is_mac) { | 70 if (is_mac) { |
| 71 libs = [ | 71 libs = [ |
| 72 "AppKit.framework", | 72 "AppKit.framework", |
| 73 "Foundation.framework", | 73 "Foundation.framework", |
| 74 ] | 74 ] |
| 75 deps = [ | |
| 76 "//chrome/app:generated_resources", | |
|
tapted
2017/01/03 00:29:27
//ui can't depend on stuff in //chrome :( - but se
Patti Lor
2017/01/06 02:02:29
Acknowledged.
| |
| 77 ] | |
| 75 } | 78 } |
| 76 | 79 |
| 77 if (use_atk) { | 80 if (use_atk) { |
| 78 sources += [ | 81 sources += [ |
| 79 "platform/atk_util_auralinux.cc", | 82 "platform/atk_util_auralinux.cc", |
| 80 "platform/atk_util_auralinux.h", | 83 "platform/atk_util_auralinux.h", |
| 81 "platform/ax_platform_node_auralinux.cc", | 84 "platform/ax_platform_node_auralinux.cc", |
| 82 "platform/ax_platform_node_auralinux.h", | 85 "platform/ax_platform_node_auralinux.h", |
| 83 ] | 86 ] |
| 84 | 87 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 164 | 167 |
| 165 fuzzer_test("ax_tree_fuzzer") { | 168 fuzzer_test("ax_tree_fuzzer") { |
| 166 sources = [ | 169 sources = [ |
| 167 "ax_tree_fuzzer.cc", | 170 "ax_tree_fuzzer.cc", |
| 168 ] | 171 ] |
| 169 | 172 |
| 170 deps = [ | 173 deps = [ |
| 171 ":accessibility", | 174 ":accessibility", |
| 172 ] | 175 ] |
| 173 } | 176 } |
| OLD | NEW |