| 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/module_args/v8.gni") | 5 import("//build/module_args/v8.gni") |
| 6 import("//mojo/mojo_application_package.gni") | 6 import("//mojo/mojo_application_package.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/mojo/src/mojo/public/mojo.gni") | 8 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "//components/resource_provider/public/cpp", | 118 "//components/resource_provider/public/cpp", |
| 119 "//components/resource_provider/public/interfaces", | 119 "//components/resource_provider/public/interfaces", |
| 120 "//components/scheduler:scheduler", | 120 "//components/scheduler:scheduler", |
| 121 "//components/surfaces/public/interfaces", | 121 "//components/surfaces/public/interfaces", |
| 122 "//components/webcrypto", | 122 "//components/webcrypto", |
| 123 "//gin", | 123 "//gin", |
| 124 "//mandoline/services/navigation/public/interfaces", | 124 "//mandoline/services/navigation/public/interfaces", |
| 125 "//media", | 125 "//media", |
| 126 "//media/blink", | 126 "//media/blink", |
| 127 "//media/mojo", | 127 "//media/mojo", |
| 128 "//mojo/application", | 128 "//mojo/application/public/cpp", |
| 129 "//mojo/application/public/interfaces", | |
| 130 "//mojo/cc", | 129 "//mojo/cc", |
| 131 "//mojo/common", | |
| 132 "//mojo/converters/surfaces", | 130 "//mojo/converters/surfaces", |
| 133 "//mojo/services/network/public/cpp", | 131 "//mojo/services/network/public/cpp", |
| 134 "//mojo/services/network/public/interfaces", | 132 "//mojo/services/network/public/interfaces", |
| 135 "//net", | 133 "//net", |
| 136 "//skia", | 134 "//skia", |
| 137 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 135 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 138 "//third_party/mojo/src/mojo/public/cpp/utility", | |
| 139 "//third_party/mojo_services/src/accessibility/public/interfaces", | 136 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 140 "//ui/mojo/events:interfaces", | 137 "//ui/mojo/events:interfaces", |
| 141 "//ui/events", | 138 "//ui/events", |
| 142 "//ui/events:gesture_detection", | 139 "//ui/events:gesture_detection", |
| 143 "//ui/events/blink", | 140 "//ui/events/blink", |
| 144 "//ui/events/gestures/blink", | 141 "//ui/events/gestures/blink", |
| 145 "//ui/gfx", | 142 "//ui/gfx", |
| 146 "//ui/gfx/geometry", | 143 "//ui/gfx/geometry", |
| 147 "//ui/native_theme", | 144 "//ui/native_theme", |
| 148 | 145 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 mojo_native_application("apptests") { | 211 mojo_native_application("apptests") { |
| 215 output_name = "html_viewer_apptests" | 212 output_name = "html_viewer_apptests" |
| 216 testonly = true | 213 testonly = true |
| 217 | 214 |
| 218 sources = [ | 215 sources = [ |
| 219 "ax_provider_apptest.cc", | 216 "ax_provider_apptest.cc", |
| 220 ] | 217 ] |
| 221 | 218 |
| 222 deps = [ | 219 deps = [ |
| 223 "//base", | 220 "//base", |
| 224 "//mojo/application", | 221 "//mojo/application/public/cpp:test_support", |
| 225 "//mojo/application:test_support", | |
| 226 "//net:test_support", | 222 "//net:test_support", |
| 227 "//testing/gtest", | 223 "//testing/gtest", |
| 228 "//third_party/mojo_services/src/accessibility/public/interfaces", | 224 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 229 ] | 225 ] |
| 230 | 226 |
| 231 data_deps = [ ":html_viewer" ] | 227 data_deps = [ ":html_viewer" ] |
| 232 } | 228 } |
| OLD | NEW |