| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "//cc/surfaces", | 76 "//cc/surfaces", |
| 77 "//gin", | 77 "//gin", |
| 78 "//media", | 78 "//media", |
| 79 "//media/blink", | 79 "//media/blink", |
| 80 "//media/mojo", | 80 "//media/mojo", |
| 81 "//mojo/application", | 81 "//mojo/application", |
| 82 "//mojo/cc", | 82 "//mojo/cc", |
| 83 "//mojo/common", | 83 "//mojo/common", |
| 84 "//mojo/converters/surfaces", | 84 "//mojo/converters/surfaces", |
| 85 "//mojo/services/network/public/cpp", | 85 "//mojo/services/network/public/cpp", |
| 86 "//mojo/services/accessibility/public/interfaces", | |
| 87 "//mojo/services/clipboard/public/interfaces", | |
| 88 "//mojo/services/content_handler/public/interfaces", | |
| 89 "//mojo/services/gpu/public/interfaces", | |
| 90 "//mojo/services/input_events/public/interfaces", | |
| 91 "//mojo/services/navigation/public/interfaces", | |
| 92 "//mojo/services/network/public/interfaces", | 86 "//mojo/services/network/public/interfaces", |
| 93 "//mojo/services/surfaces/public/interfaces", | |
| 94 "//net", | 87 "//net", |
| 95 "//skia", | 88 "//skia", |
| 96 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 89 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 97 "//third_party/mojo/src/mojo/public/cpp/utility", | 90 "//third_party/mojo/src/mojo/public/cpp/utility", |
| 98 "//third_party/mojo/src/mojo/public/interfaces/application", | 91 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 92 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 93 "//third_party/mojo_services/src/clipboard/public/interfaces", |
| 94 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 95 "//third_party/mojo_services/src/gpu/public/interfaces", |
| 96 "//third_party/mojo_services/src/input_events/public/interfaces", |
| 97 "//third_party/mojo_services/src/navigation/public/interfaces", |
| 98 "//third_party/mojo_services/src/surfaces/public/interfaces", |
| 99 "//ui/native_theme", | 99 "//ui/native_theme", |
| 100 "//url", | 100 "//url", |
| 101 ] | 101 ] |
| 102 | 102 |
| 103 public_deps = [ | 103 public_deps = [ |
| 104 "//mojo/services/view_manager/public/cpp", | |
| 105 "//third_party/WebKit/public:blink", | 104 "//third_party/WebKit/public:blink", |
| 106 "//third_party/mojo/src/mojo/public/cpp/bindings", | 105 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 106 "//third_party/mojo_services/src/view_manager/public/cpp", |
| 107 ":generate_blink_resource_map", | 107 ":generate_blink_resource_map", |
| 108 ] | 108 ] |
| 109 } | 109 } |
| 110 | 110 |
| 111 mojo_native_application("html_viewer") { | 111 mojo_native_application("html_viewer") { |
| 112 sources = [ | 112 sources = [ |
| 113 "html_viewer.cc", | 113 "html_viewer.cc", |
| 114 ] | 114 ] |
| 115 deps = [ | 115 deps = [ |
| 116 ":lib", | 116 ":lib", |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 test("tests") { | 120 test("tests") { |
| 121 output_name = "html_viewer_unittests" | 121 output_name = "html_viewer_unittests" |
| 122 sources = [ | 122 sources = [ |
| 123 "ax_provider_impl_unittest.cc", | 123 "ax_provider_impl_unittest.cc", |
| 124 ] | 124 ] |
| 125 deps = [ | 125 deps = [ |
| 126 ":lib", | 126 ":lib", |
| 127 "//base/test:run_all_unittests", | 127 "//base/test:run_all_unittests", |
| 128 ] | 128 ] |
| 129 } | 129 } |
| OLD | NEW |