| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 "$root_out_dir/icudtl.dat", | 190 "$root_out_dir/icudtl.dat", |
| 191 "$root_out_dir/ui_test.pak", | 191 "$root_out_dir/ui_test.pak", |
| 192 "$target_gen_dir/html_viewer_resources.pak", | 192 "$target_gen_dir/html_viewer_resources.pak", |
| 193 ] | 193 ] |
| 194 | 194 |
| 195 if (v8_use_external_startup_data) { | 195 if (v8_use_external_startup_data) { |
| 196 resources += [ | 196 resources += [ |
| 197 "$root_build_dir/natives_blob.bin", | 197 "$root_build_dir/natives_blob.bin", |
| 198 "$root_build_dir/snapshot_blob.bin", | 198 "$root_build_dir/snapshot_blob.bin", |
| 199 ] | 199 ] |
| 200 deps += [ "//gin" ] | |
| 201 } | 200 } |
| 202 } | 201 } |
| 203 | 202 |
| 204 test("tests") { | 203 test("tests") { |
| 205 output_name = "html_viewer_unittests" | 204 output_name = "html_viewer_unittests" |
| 206 sources = [ | 205 sources = [ |
| 207 "ax_provider_impl_unittest.cc", | 206 "ax_provider_impl_unittest.cc", |
| 208 "discardable_memory_allocator_unittest.cc", | 207 "discardable_memory_allocator_unittest.cc", |
| 209 ] | 208 ] |
| 210 deps = [ | 209 deps = [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 225 "//base", | 224 "//base", |
| 226 "//mojo/application", | 225 "//mojo/application", |
| 227 "//mojo/application:test_support", | 226 "//mojo/application:test_support", |
| 228 "//net:test_support", | 227 "//net:test_support", |
| 229 "//testing/gtest", | 228 "//testing/gtest", |
| 230 "//third_party/mojo_services/src/accessibility/public/interfaces", | 229 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 231 ] | 230 ] |
| 232 | 231 |
| 233 data_deps = [ ":html_viewer" ] | 232 data_deps = [ ":html_viewer" ] |
| 234 } | 233 } |
| OLD | NEW |