| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "//third_party/mojo/src/mojo/public/cpp/bindings", | 157 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 158 ":generate_blink_resource_map", | 158 ":generate_blink_resource_map", |
| 159 ] | 159 ] |
| 160 | 160 |
| 161 if (is_win) { | 161 if (is_win) { |
| 162 sources += [ "html_viewer_version.rc" ] | 162 sources += [ "html_viewer_version.rc" ] |
| 163 } | 163 } |
| 164 | 164 |
| 165 data_deps = [ | 165 data_deps = [ |
| 166 "//components/clipboard", | 166 "//components/clipboard", |
| 167 "//components/native_viewport", | |
| 168 "//components/surfaces", | 167 "//components/surfaces", |
| 169 "//components/view_manager", | 168 "//components/view_manager", |
| 170 ] | 169 ] |
| 171 } | 170 } |
| 172 | 171 |
| 173 mojo_application_package("html_viewer") { | 172 mojo_application_package("html_viewer") { |
| 174 sources = [ | 173 sources = [ |
| 175 "html_viewer.cc", | 174 "html_viewer.cc", |
| 176 "ui_setup.h", | 175 "ui_setup.h", |
| 177 "ui_setup_android.cc", | 176 "ui_setup_android.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "//base", | 223 "//base", |
| 225 "//mojo/application", | 224 "//mojo/application", |
| 226 "//mojo/application:test_support", | 225 "//mojo/application:test_support", |
| 227 "//net:test_support", | 226 "//net:test_support", |
| 228 "//testing/gtest", | 227 "//testing/gtest", |
| 229 "//third_party/mojo_services/src/accessibility/public/interfaces", | 228 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 230 ] | 229 ] |
| 231 | 230 |
| 232 data_deps = [ ":html_viewer" ] | 231 data_deps = [ ":html_viewer" ] |
| 233 } | 232 } |
| OLD | NEW |