| 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 24 matching lines...) Expand all Loading... |
| 35 "blink_basic_type_converters.h", | 35 "blink_basic_type_converters.h", |
| 36 "blink_input_events_type_converters.cc", | 36 "blink_input_events_type_converters.cc", |
| 37 "blink_input_events_type_converters.h", | 37 "blink_input_events_type_converters.h", |
| 38 "blink_platform_impl.cc", | 38 "blink_platform_impl.cc", |
| 39 "blink_platform_impl.h", | 39 "blink_platform_impl.h", |
| 40 "blink_resource_constants.h", | 40 "blink_resource_constants.h", |
| 41 "blink_url_request_type_converters.cc", | 41 "blink_url_request_type_converters.cc", |
| 42 "blink_url_request_type_converters.h", | 42 "blink_url_request_type_converters.h", |
| 43 "html_document.cc", | 43 "html_document.cc", |
| 44 "html_document.h", | 44 "html_document.h", |
| 45 "html_viewer_discardable_memory_shmem_allocator.cc", |
| 46 "html_viewer_discardable_memory_shmem_allocator.h", |
| 45 "mojo_blink_platform_impl.cc", | 47 "mojo_blink_platform_impl.cc", |
| 46 "mojo_blink_platform_impl.h", | 48 "mojo_blink_platform_impl.h", |
| 47 "webclipboard_impl.cc", | 49 "webclipboard_impl.cc", |
| 48 "webclipboard_impl.h", | 50 "webclipboard_impl.h", |
| 49 "webcookiejar_impl.cc", | 51 "webcookiejar_impl.cc", |
| 50 "webcookiejar_impl.h", | 52 "webcookiejar_impl.h", |
| 51 "weblayertreeview_impl.cc", | 53 "weblayertreeview_impl.cc", |
| 52 "weblayertreeview_impl.h", | 54 "weblayertreeview_impl.h", |
| 53 "webmediaplayer_factory.cc", | 55 "webmediaplayer_factory.cc", |
| 54 "webmediaplayer_factory.h", | 56 "webmediaplayer_factory.h", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 test("tests") { | 176 test("tests") { |
| 175 output_name = "html_viewer_unittests" | 177 output_name = "html_viewer_unittests" |
| 176 sources = [ | 178 sources = [ |
| 177 "ax_provider_impl_unittest.cc", | 179 "ax_provider_impl_unittest.cc", |
| 178 ] | 180 ] |
| 179 deps = [ | 181 deps = [ |
| 180 ":lib", | 182 ":lib", |
| 181 "//base/test:run_all_unittests", | 183 "//base/test:run_all_unittests", |
| 182 ] | 184 ] |
| 183 } | 185 } |
| OLD | NEW |