| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 "$root_out_dir/icudtl.dat", | 184 "$root_out_dir/icudtl.dat", |
| 185 "$root_out_dir/ui_test.pak", | 185 "$root_out_dir/ui_test.pak", |
| 186 "$target_gen_dir/html_viewer_resources.pak", | 186 "$target_gen_dir/html_viewer_resources.pak", |
| 187 ] | 187 ] |
| 188 | 188 |
| 189 if (v8_use_external_startup_data) { | 189 if (v8_use_external_startup_data) { |
| 190 resources += [ | 190 resources += [ |
| 191 "$root_build_dir/natives_blob.bin", | 191 "$root_build_dir/natives_blob.bin", |
| 192 "$root_build_dir/snapshot_blob.bin", | 192 "$root_build_dir/snapshot_blob.bin", |
| 193 ] | 193 ] |
| 194 deps += [ "//gin" ] |
| 194 } | 195 } |
| 195 } | 196 } |
| 196 | 197 |
| 197 test("tests") { | 198 test("tests") { |
| 198 output_name = "html_viewer_unittests" | 199 output_name = "html_viewer_unittests" |
| 199 sources = [ | 200 sources = [ |
| 200 "ax_provider_impl_unittest.cc", | 201 "ax_provider_impl_unittest.cc", |
| 201 "discardable_memory_allocator_unittest.cc", | 202 "discardable_memory_allocator_unittest.cc", |
| 202 ] | 203 ] |
| 203 deps = [ | 204 deps = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 217 deps = [ | 218 deps = [ |
| 218 "//base", | 219 "//base", |
| 219 "//mojo/application/public/cpp:test_support", | 220 "//mojo/application/public/cpp:test_support", |
| 220 "//net:test_support", | 221 "//net:test_support", |
| 221 "//testing/gtest", | 222 "//testing/gtest", |
| 222 "//third_party/mojo_services/src/accessibility/public/interfaces", | 223 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 223 ] | 224 ] |
| 224 | 225 |
| 225 data_deps = [ ":html_viewer" ] | 226 data_deps = [ ":html_viewer" ] |
| 226 } | 227 } |
| OLD | NEW |