| 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("//mojo/public/mojo.gni") | 5 import("//mojo/public/mojo.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 | 7 |
| 8 source_set("lib") { | 8 source_set("lib") { |
| 9 sources = [ | 9 sources = [ |
| 10 "ax_provider_impl.cc", | 10 "ax_provider_impl.cc", |
| 11 "ax_provider_impl.h", | 11 "ax_provider_impl.h", |
| 12 "blink_basic_type_converters.cc", | 12 "blink_basic_type_converters.cc", |
| 13 "blink_basic_type_converters.h", | 13 "blink_basic_type_converters.h", |
| 14 "blink_input_events_type_converters.cc", | 14 "blink_input_events_type_converters.cc", |
| 15 "blink_input_events_type_converters.h", | 15 "blink_input_events_type_converters.h", |
| 16 "blink_platform_impl.cc", | 16 "blink_platform_impl.cc", |
| 17 "blink_platform_impl.h", | 17 "blink_platform_impl.h", |
| 18 "blink_url_request_type_converters.cc", | 18 "blink_url_request_type_converters.cc", |
| 19 "blink_url_request_type_converters.h", | 19 "blink_url_request_type_converters.h", |
| 20 "html_document_view.cc", | 20 "html_document.cc", |
| 21 "html_document_view.h", | 21 "html_document.h", |
| 22 "mojo_blink_platform_impl.cc", | 22 "mojo_blink_platform_impl.cc", |
| 23 "mojo_blink_platform_impl.h", | 23 "mojo_blink_platform_impl.h", |
| 24 "webclipboard_impl.cc", | 24 "webclipboard_impl.cc", |
| 25 "webclipboard_impl.h", | 25 "webclipboard_impl.h", |
| 26 "webcookiejar_impl.cc", | 26 "webcookiejar_impl.cc", |
| 27 "webcookiejar_impl.h", | 27 "webcookiejar_impl.h", |
| 28 "webmediaplayer_factory.cc", | 28 "webmediaplayer_factory.cc", |
| 29 "webmediaplayer_factory.h", | 29 "webmediaplayer_factory.h", |
| 30 "webmimeregistry_impl.cc", | 30 "webmimeregistry_impl.cc", |
| 31 "webmimeregistry_impl.h", | 31 "webmimeregistry_impl.h", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 test("tests") { | 95 test("tests") { |
| 96 output_name = "html_viewer_unittests" | 96 output_name = "html_viewer_unittests" |
| 97 sources = [ | 97 sources = [ |
| 98 "ax_provider_impl_unittest.cc", | 98 "ax_provider_impl_unittest.cc", |
| 99 ] | 99 ] |
| 100 deps = [ | 100 deps = [ |
| 101 ":lib", | 101 ":lib", |
| 102 "//base/test:run_all_unittests", | 102 "//base/test:run_all_unittests", |
| 103 ] | 103 ] |
| 104 } | 104 } |
| OLD | NEW |