| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//build/json_schema_api.gni") | 6 import("//build/json_schema_api.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ":ax_gen", | 45 ":ax_gen", |
| 46 "//base", | 46 "//base", |
| 47 "//ui/gfx", | 47 "//ui/gfx", |
| 48 "//ui/gfx/geometry", | 48 "//ui/gfx/geometry", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 if (is_win) { | 51 if (is_win) { |
| 52 public_deps += [ "//third_party/iaccessible2" ] | 52 public_deps += [ "//third_party/iaccessible2" ] |
| 53 } | 53 } |
| 54 | 54 |
| 55 if (use_aura && !is_chromeos && is_linux && use_x11) { | 55 if (use_atk) { |
| 56 sources += [ | 56 sources += [ |
| 57 "platform/atk_util_auralinux.cc", | 57 "platform/atk_util_auralinux.cc", |
| 58 "platform/atk_util_auralinux.h", | 58 "platform/atk_util_auralinux.h", |
| 59 "platform/ax_platform_node_auralinux.cc", | 59 "platform/ax_platform_node_auralinux.cc", |
| 60 "platform/ax_platform_node_auralinux.h", | 60 "platform/ax_platform_node_auralinux.h", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 configs += [ | 63 configs += [ |
| 64 "//build/config/linux:atk", | 64 "//build/config/linux:atk", |
| 65 "//build/config/linux:atk_warnings", | 65 "//build/config/linux:atk_warnings", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 json_schema_api("ax_gen") { | 125 json_schema_api("ax_gen") { |
| 126 sources = [ | 126 sources = [ |
| 127 "ax_enums.idl", | 127 "ax_enums.idl", |
| 128 ] | 128 ] |
| 129 deps = [ | 129 deps = [ |
| 130 "//base/third_party/dynamic_annotations", | 130 "//base/third_party/dynamic_annotations", |
| 131 ] | 131 ] |
| 132 root_namespace = "ui" | 132 root_namespace = "ui" |
| 133 schemas = true | 133 schemas = true |
| 134 } | 134 } |
| OLD | NEW |