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/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//build/json_schema_api.gni") | 7 import("//build/json_schema_api.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "//base:i18n", | 79 "//base:i18n", |
80 "//ui/base", | 80 "//ui/base", |
81 "//ui/gfx", | 81 "//ui/gfx", |
82 "//ui/gfx/geometry", | 82 "//ui/gfx/geometry", |
83 ] | 83 ] |
84 | 84 |
85 if (is_win) { | 85 if (is_win) { |
86 public_deps += [ "//third_party/iaccessible2" ] | 86 public_deps += [ "//third_party/iaccessible2" ] |
87 } | 87 } |
88 | 88 |
| 89 if (is_mac) { |
| 90 libs = [ |
| 91 "AppKit.framework", |
| 92 "Foundation.framework", |
| 93 ] |
| 94 } |
| 95 |
89 if (use_atk) { | 96 if (use_atk) { |
90 sources += [ | 97 sources += [ |
91 "platform/atk_util_auralinux.cc", | 98 "platform/atk_util_auralinux.cc", |
92 "platform/atk_util_auralinux.h", | 99 "platform/atk_util_auralinux.h", |
93 "platform/ax_platform_node_auralinux.cc", | 100 "platform/ax_platform_node_auralinux.cc", |
94 "platform/ax_platform_node_auralinux.h", | 101 "platform/ax_platform_node_auralinux.h", |
95 ] | 102 ] |
96 | 103 |
97 configs += [ | 104 configs += [ |
98 ":atk", | 105 ":atk", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 json_schema_api("ax_gen") { | 166 json_schema_api("ax_gen") { |
160 sources = [ | 167 sources = [ |
161 "ax_enums.idl", | 168 "ax_enums.idl", |
162 ] | 169 ] |
163 deps = [ | 170 deps = [ |
164 "//base/third_party/dynamic_annotations", | 171 "//base/third_party/dynamic_annotations", |
165 ] | 172 ] |
166 root_namespace = "ui" | 173 root_namespace = "ui" |
167 schemas = true | 174 schemas = true |
168 } | 175 } |
OLD | NEW |