| 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 30 matching lines...) Expand all Loading... |
| 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 "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 "weblayertreeview_impl.cc", |
| 52 "weblayertreeview_impl.h", |
| 51 "webmediaplayer_factory.cc", | 53 "webmediaplayer_factory.cc", |
| 52 "webmediaplayer_factory.h", | 54 "webmediaplayer_factory.h", |
| 53 "webmimeregistry_impl.cc", | 55 "webmimeregistry_impl.cc", |
| 54 "webmimeregistry_impl.h", | 56 "webmimeregistry_impl.h", |
| 55 "webscheduler_impl.cc", | 57 "webscheduler_impl.cc", |
| 56 "webscheduler_impl.h", | 58 "webscheduler_impl.h", |
| 57 "websockethandle_impl.cc", | 59 "websockethandle_impl.cc", |
| 58 "websockethandle_impl.h", | 60 "websockethandle_impl.h", |
| 59 "webstoragenamespace_impl.cc", | 61 "webstoragenamespace_impl.cc", |
| 60 "webstoragenamespace_impl.h", | 62 "webstoragenamespace_impl.h", |
| 61 "webthemeengine_impl.cc", | 63 "webthemeengine_impl.cc", |
| 62 "webthemeengine_impl.h", | 64 "webthemeengine_impl.h", |
| 63 "webthread_impl.cc", | 65 "webthread_impl.cc", |
| 64 "webthread_impl.h", | 66 "webthread_impl.h", |
| 65 "weburlloader_impl.cc", | 67 "weburlloader_impl.cc", |
| 66 "weburlloader_impl.h", | 68 "weburlloader_impl.h", |
| 67 "weblayertreeview_impl.cc", | |
| 68 "weblayertreeview_impl.h", | |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 include_dirs = [ "third_party/WebKit" ] | 71 include_dirs = [ "third_party/WebKit" ] |
| 72 | 72 |
| 73 deps = [ | 73 deps = [ |
| 74 "//base", | 74 "//base", |
| 75 "//base/third_party/dynamic_annotations", | 75 "//base/third_party/dynamic_annotations", |
| 76 "//cc", | 76 "//cc", |
| 77 "//cc/blink", | 77 "//cc/blink", |
| 78 "//cc/surfaces", | 78 "//cc/surfaces", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 test("tests") { | 122 test("tests") { |
| 123 output_name = "html_viewer_unittests" | 123 output_name = "html_viewer_unittests" |
| 124 sources = [ | 124 sources = [ |
| 125 "ax_provider_impl_unittest.cc", | 125 "ax_provider_impl_unittest.cc", |
| 126 ] | 126 ] |
| 127 deps = [ | 127 deps = [ |
| 128 ":lib", | 128 ":lib", |
| 129 "//base/test:run_all_unittests", | 129 "//base/test:run_all_unittests", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| OLD | NEW |