| 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("//build/module_args/v8.gni") | 5 import("//build/module_args/v8.gni") |
| 6 import("//mojo/mojo_application_package.gni") | 6 import("//mojo/mojo_application_package.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/mojo/src/mojo/public/mojo.gni") | 8 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 9 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 include_dirs = [ "third_party/WebKit" ] | 107 include_dirs = [ "third_party/WebKit" ] |
| 108 | 108 |
| 109 deps = [ | 109 deps = [ |
| 110 "//base", | 110 "//base", |
| 111 "//base/third_party/dynamic_annotations", | 111 "//base/third_party/dynamic_annotations", |
| 112 "//cc", | 112 "//cc", |
| 113 "//cc/blink", | 113 "//cc/blink", |
| 114 "//cc/surfaces", | 114 "//cc/surfaces", |
| 115 "//components/clipboard/public/interfaces", | 115 "//components/clipboard/public/interfaces", |
| 116 "//components/gpu/public/interfaces", | |
| 117 "//components/mime_util", | 116 "//components/mime_util", |
| 118 "//components/resource_provider/public/cpp", | 117 "//components/resource_provider/public/cpp", |
| 119 "//components/resource_provider/public/interfaces", | 118 "//components/resource_provider/public/interfaces", |
| 120 "//components/scheduler:scheduler", | 119 "//components/scheduler:scheduler", |
| 121 "//components/surfaces/public/interfaces", | 120 "//components/view_manager/public/interfaces", |
| 122 "//components/webcrypto", | 121 "//components/webcrypto", |
| 123 "//gin", | 122 "//gin", |
| 124 "//mandoline/services/navigation/public/interfaces", | 123 "//mandoline/services/navigation/public/interfaces", |
| 125 "//media", | 124 "//media", |
| 126 "//media/blink", | 125 "//media/blink", |
| 127 "//media/mojo", | 126 "//media/mojo", |
| 128 "//mojo/application/public/cpp", | 127 "//mojo/application/public/cpp", |
| 129 "//mojo/cc", | 128 "//mojo/cc", |
| 130 "//mojo/converters/surfaces", | 129 "//mojo/converters/surfaces", |
| 131 "//mojo/services/network/public/cpp", | 130 "//mojo/services/network/public/cpp", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 154 "//third_party/mojo/src/mojo/public/cpp/bindings", | 153 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 155 ":generate_blink_resource_map", | 154 ":generate_blink_resource_map", |
| 156 ] | 155 ] |
| 157 | 156 |
| 158 if (is_win) { | 157 if (is_win) { |
| 159 sources += [ "html_viewer_version.rc" ] | 158 sources += [ "html_viewer_version.rc" ] |
| 160 } | 159 } |
| 161 | 160 |
| 162 data_deps = [ | 161 data_deps = [ |
| 163 "//components/clipboard", | 162 "//components/clipboard", |
| 164 "//components/surfaces", | |
| 165 "//components/view_manager", | 163 "//components/view_manager", |
| 166 ] | 164 ] |
| 167 } | 165 } |
| 168 | 166 |
| 169 mojo_application_package("html_viewer") { | 167 mojo_application_package("html_viewer") { |
| 170 sources = [ | 168 sources = [ |
| 171 "html_viewer.cc", | 169 "html_viewer.cc", |
| 172 "ui_setup.h", | 170 "ui_setup.h", |
| 173 "ui_setup_android.cc", | 171 "ui_setup_android.cc", |
| 174 "ui_setup_android.h", | 172 "ui_setup_android.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 deps = [ | 217 deps = [ |
| 220 "//base", | 218 "//base", |
| 221 "//mojo/application/public/cpp:test_support", | 219 "//mojo/application/public/cpp:test_support", |
| 222 "//net:test_support", | 220 "//net:test_support", |
| 223 "//testing/gtest", | 221 "//testing/gtest", |
| 224 "//third_party/mojo_services/src/accessibility/public/interfaces", | 222 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 225 ] | 223 ] |
| 226 | 224 |
| 227 data_deps = [ ":html_viewer" ] | 225 data_deps = [ ":html_viewer" ] |
| 228 } | 226 } |
| OLD | NEW |