| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "run_all_unittests.cc", | 309 "run_all_unittests.cc", |
| 310 ] | 310 ] |
| 311 deps = [ | 311 deps = [ |
| 312 ":lib", | 312 ":lib", |
| 313 ":pak", | 313 ":pak", |
| 314 "//base/test:test_support", | 314 "//base/test:test_support", |
| 315 "//components/scheduler", | 315 "//components/scheduler", |
| 316 "//gin", | 316 "//gin", |
| 317 "//mojo/converters/blink", | 317 "//mojo/converters/blink", |
| 318 "//mojo/converters/input_events", | 318 "//mojo/converters/input_events", |
| 319 "//mojo/edk/system", |
| 319 "//mojo/gles2", | 320 "//mojo/gles2", |
| 320 "//mojo/platform_handle:platform_handle_impl", | 321 "//mojo/platform_handle:platform_handle_impl", |
| 321 "//testing/gtest:gtest", | 322 "//testing/gtest:gtest", |
| 322 "//third_party/mojo/src/mojo/edk/system", | |
| 323 "//ui/base", | 323 "//ui/base", |
| 324 "//ui/events", | 324 "//ui/events", |
| 325 "//ui/events:test_support", | 325 "//ui/events:test_support", |
| 326 "//ui/mojo/init", | 326 "//ui/mojo/init", |
| 327 ] | 327 ] |
| 328 | 328 |
| 329 if (is_android) { | 329 if (is_android) { |
| 330 deps += [ ":unittest_assets" ] | 330 deps += [ ":unittest_assets" ] |
| 331 write_asset_list = true | 331 write_asset_list = true |
| 332 } | 332 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 362 ] | 362 ] |
| 363 | 363 |
| 364 data_deps = [ | 364 data_deps = [ |
| 365 ":html_viewer", | 365 ":html_viewer", |
| 366 ] | 366 ] |
| 367 | 367 |
| 368 if (is_linux && !is_android) { | 368 if (is_linux && !is_android) { |
| 369 data_deps += [ "//components/font_service" ] | 369 data_deps += [ "//components/font_service" ] |
| 370 } | 370 } |
| 371 } | 371 } |
| OLD | NEW |