| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "mojo_blink_platform_impl.cc", | 45 "mojo_blink_platform_impl.cc", |
| 46 "mojo_blink_platform_impl.h", | 46 "mojo_blink_platform_impl.h", |
| 47 "webclipboard_impl.cc", | 47 "webclipboard_impl.cc", |
| 48 "webclipboard_impl.h", | 48 "webclipboard_impl.h", |
| 49 "webcookiejar_impl.cc", | 49 "webcookiejar_impl.cc", |
| 50 "webcookiejar_impl.h", | 50 "webcookiejar_impl.h", |
| 51 "webmediaplayer_factory.cc", | 51 "webmediaplayer_factory.cc", |
| 52 "webmediaplayer_factory.h", | 52 "webmediaplayer_factory.h", |
| 53 "webmimeregistry_impl.cc", | 53 "webmimeregistry_impl.cc", |
| 54 "webmimeregistry_impl.h", | 54 "webmimeregistry_impl.h", |
| 55 "webscheduler_impl.cc", |
| 56 "webscheduler_impl.h", |
| 55 "websockethandle_impl.cc", | 57 "websockethandle_impl.cc", |
| 56 "websockethandle_impl.h", | 58 "websockethandle_impl.h", |
| 57 "webstoragenamespace_impl.cc", | 59 "webstoragenamespace_impl.cc", |
| 58 "webstoragenamespace_impl.h", | 60 "webstoragenamespace_impl.h", |
| 59 "webthemeengine_impl.cc", | 61 "webthemeengine_impl.cc", |
| 60 "webthemeengine_impl.h", | 62 "webthemeengine_impl.h", |
| 61 "webthread_impl.cc", | 63 "webthread_impl.cc", |
| 62 "webthread_impl.h", | 64 "webthread_impl.h", |
| 63 "weburlloader_impl.cc", | 65 "weburlloader_impl.cc", |
| 64 "weburlloader_impl.h", | 66 "weburlloader_impl.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 test("tests") { | 122 test("tests") { |
| 121 output_name = "html_viewer_unittests" | 123 output_name = "html_viewer_unittests" |
| 122 sources = [ | 124 sources = [ |
| 123 "ax_provider_impl_unittest.cc", | 125 "ax_provider_impl_unittest.cc", |
| 124 ] | 126 ] |
| 125 deps = [ | 127 deps = [ |
| 126 ":lib", | 128 ":lib", |
| 127 "//base/test:run_all_unittests", | 129 "//base/test:run_all_unittests", |
| 128 ] | 130 ] |
| 129 } | 131 } |
| OLD | NEW |