| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 action("generate_blink_resource_map") { | 9 action("generate_blink_resource_map") { |
| 10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" | 10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 91 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 92 "//third_party/mojo/src/mojo/public/cpp/utility", | 92 "//third_party/mojo/src/mojo/public/cpp/utility", |
| 93 "//third_party/mojo/src/mojo/public/interfaces/application", | 93 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 94 "//third_party/mojo_services/src/accessibility/public/interfaces", | 94 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 95 "//third_party/mojo_services/src/clipboard/public/interfaces", | 95 "//third_party/mojo_services/src/clipboard/public/interfaces", |
| 96 "//third_party/mojo_services/src/content_handler/public/interfaces", | 96 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 97 "//third_party/mojo_services/src/gpu/public/interfaces", | 97 "//third_party/mojo_services/src/gpu/public/interfaces", |
| 98 "//third_party/mojo_services/src/input_events/public/interfaces", | 98 "//third_party/mojo_services/src/input_events/public/interfaces", |
| 99 "//third_party/mojo_services/src/navigation/public/interfaces", | 99 "//third_party/mojo_services/src/navigation/public/interfaces", |
| 100 "//third_party/mojo_services/src/surfaces/public/interfaces", | 100 "//third_party/mojo_services/src/surfaces/public/interfaces", |
| 101 "//ui/gfx/geometry", |
| 101 "//ui/native_theme", | 102 "//ui/native_theme", |
| 102 "//url", | 103 "//url", |
| 103 ] | 104 ] |
| 104 | 105 |
| 105 public_deps = [ | 106 public_deps = [ |
| 106 "//third_party/WebKit/public:blink", | 107 "//third_party/WebKit/public:blink", |
| 107 "//third_party/mojo/src/mojo/public/cpp/bindings", | 108 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 108 "//third_party/mojo_services/src/view_manager/public/cpp", | 109 "//third_party/mojo_services/src/view_manager/public/cpp", |
| 109 ":generate_blink_resource_map", | 110 ":generate_blink_resource_map", |
| 110 ] | 111 ] |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 test("tests") { | 175 test("tests") { |
| 175 output_name = "html_viewer_unittests" | 176 output_name = "html_viewer_unittests" |
| 176 sources = [ | 177 sources = [ |
| 177 "ax_provider_impl_unittest.cc", | 178 "ax_provider_impl_unittest.cc", |
| 178 ] | 179 ] |
| 179 deps = [ | 180 deps = [ |
| 180 ":lib", | 181 ":lib", |
| 181 "//base/test:run_all_unittests", | 182 "//base/test:run_all_unittests", |
| 182 ] | 183 ] |
| 183 } | 184 } |
| OLD | NEW |