| 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/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 192 |
| 193 if (v8_use_external_startup_data) { | 193 if (v8_use_external_startup_data) { |
| 194 resources += [ | 194 resources += [ |
| 195 "$root_build_dir/natives_blob.bin", | 195 "$root_build_dir/natives_blob.bin", |
| 196 "$root_build_dir/snapshot_blob.bin", | 196 "$root_build_dir/snapshot_blob.bin", |
| 197 ] | 197 ] |
| 198 deps += [ "//gin" ] | 198 deps += [ "//gin" ] |
| 199 } | 199 } |
| 200 } | 200 } |
| 201 | 201 |
| 202 test("tests") { | 202 test("html_viewer_unittests") { |
| 203 output_name = "html_viewer_unittests" | |
| 204 sources = [ | 203 sources = [ |
| 205 "ax_provider_impl_unittest.cc", | 204 "ax_provider_impl_unittest.cc", |
| 206 "discardable_memory_allocator_unittest.cc", | 205 "discardable_memory_allocator_unittest.cc", |
| 207 "run_all_unittests.cc", | 206 "run_all_unittests.cc", |
| 208 ] | 207 ] |
| 209 deps = [ | 208 deps = [ |
| 210 ":lib", | 209 ":lib", |
| 211 "//base/test:test_support", | 210 "//base/test:test_support", |
| 212 "//third_party/mojo/src/mojo/edk/system", | 211 "//third_party/mojo/src/mojo/edk/system", |
| 213 ] | 212 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 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 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 230 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 232 ] | 231 ] |
| 233 | 232 |
| 234 data_deps = [ | 233 data_deps = [ |
| 235 ":html_viewer", | 234 ":html_viewer", |
| 236 "//components/view_manager", | 235 "//components/view_manager", |
| 237 ] | 236 ] |
| 238 } | 237 } |
| OLD | NEW |