| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "ui_setup_android.h", | 179 "ui_setup_android.h", |
| 180 ] | 180 ] |
| 181 deps = [ | 181 deps = [ |
| 182 ":html_viewer_resources_grit", | 182 ":html_viewer_resources_grit", |
| 183 ":lib", | 183 ":lib", |
| 184 "//mojo/common", | 184 "//mojo/common", |
| 185 "//mojo/platform_handle", | 185 "//mojo/platform_handle", |
| 186 "//third_party/icu:icudata", | 186 "//third_party/icu:icudata", |
| 187 "//ui/resources:ui_test_pak", | 187 "//ui/resources:ui_test_pak", |
| 188 ] | 188 ] |
| 189 data_deps = [ | 189 data_deps = [ "//mojo/services/network:network" ] |
| 190 "//mojo/services/network:network", | |
| 191 "//components/resource_provider", | |
| 192 ] | |
| 193 resources = [ | 190 resources = [ |
| 194 "$root_out_dir/icudtl.dat", | 191 "$root_out_dir/icudtl.dat", |
| 195 "$root_out_dir/ui_test.pak", | 192 "$root_out_dir/ui_test.pak", |
| 196 "$target_gen_dir/html_viewer_resources.pak", | 193 "$target_gen_dir/html_viewer_resources.pak", |
| 197 ] | 194 ] |
| 198 | 195 |
| 199 if (v8_use_external_startup_data) { | 196 if (v8_use_external_startup_data) { |
| 200 resources += [ | 197 resources += [ |
| 201 "$root_build_dir/natives_blob.bin", | 198 "$root_build_dir/natives_blob.bin", |
| 202 "$root_build_dir/snapshot_blob.bin", | 199 "$root_build_dir/snapshot_blob.bin", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 228 "//base", | 225 "//base", |
| 229 "//mojo/application", | 226 "//mojo/application", |
| 230 "//mojo/application:test_support", | 227 "//mojo/application:test_support", |
| 231 "//net:test_support", | 228 "//net:test_support", |
| 232 "//testing/gtest", | 229 "//testing/gtest", |
| 233 "//third_party/mojo_services/src/accessibility/public/interfaces", | 230 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 234 ] | 231 ] |
| 235 | 232 |
| 236 data_deps = [ ":html_viewer" ] | 233 data_deps = [ ":html_viewer" ] |
| 237 } | 234 } |
| OLD | NEW |