| 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_overrides/v8.gni") | 5 import("//build_overrides/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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 "//mojo/platform_handle:platform_handle_impl", | 321 "//mojo/platform_handle:platform_handle_impl", |
| 322 "//testing/gtest:gtest", | 322 "//testing/gtest:gtest", |
| 323 "//third_party/mojo/src/mojo/edk/system", | 323 "//third_party/mojo/src/mojo/edk/system", |
| 324 "//ui/base", | 324 "//ui/base", |
| 325 "//ui/events", | 325 "//ui/events", |
| 326 "//ui/events:test_support", | 326 "//ui/events:test_support", |
| 327 "//ui/mojo/init", | 327 "//ui/mojo/init", |
| 328 ] | 328 ] |
| 329 | 329 |
| 330 if (is_android) { | 330 if (is_android) { |
| 331 apk_deps = [ ":unittest_assets" ] | 331 deps += [ ":unittest_assets" ] |
| 332 write_asset_list = true | 332 write_asset_list = true |
| 333 } | 333 } |
| 334 | 334 |
| 335 configs += [ "//v8:external_startup_data" ] | 335 configs += [ "//v8:external_startup_data" ] |
| 336 } | 336 } |
| 337 | 337 |
| 338 mojo_native_application("apptests") { | 338 mojo_native_application("apptests") { |
| 339 output_name = "html_viewer_apptests" | 339 output_name = "html_viewer_apptests" |
| 340 testonly = true | 340 testonly = true |
| 341 | 341 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 363 ] | 363 ] |
| 364 | 364 |
| 365 data_deps = [ | 365 data_deps = [ |
| 366 ":html_viewer", | 366 ":html_viewer", |
| 367 ] | 367 ] |
| 368 | 368 |
| 369 if (is_linux && !is_android) { | 369 if (is_linux && !is_android) { |
| 370 data_deps += [ "//components/font_service" ] | 370 data_deps += [ "//components/font_service" ] |
| 371 } | 371 } |
| 372 } | 372 } |
| OLD | NEW |