| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 data += [ | 408 data += [ |
| 409 "//net/tools/testserver/", | 409 "//net/tools/testserver/", |
| 410 "//ppapi/tests/test_case.html", | 410 "//ppapi/tests/test_case.html", |
| 411 "//ppapi/tests/test_page.css", | 411 "//ppapi/tests/test_page.css", |
| 412 "//third_party/pyftpdlib/", | 412 "//third_party/pyftpdlib/", |
| 413 "//third_party/pywebsocket/", | 413 "//third_party/pywebsocket/", |
| 414 "//third_party/tlslite/", | 414 "//third_party/tlslite/", |
| 415 ] | 415 ] |
| 416 | 416 |
| 417 if (is_mac) { | 417 if (is_mac) { |
| 418 data += [ | 418 data += [ "$root_out_dir/Content Shell.app/" ] |
| 419 "$root_out_dir/Content Shell.app/", | |
| 420 "$root_out_dir/plugins/test_netscape_plugin.plugin/", | |
| 421 ] | |
| 422 } | 419 } |
| 423 if (is_win) { | 420 if (is_win) { |
| 424 # TODO(GYP): Add this once //content/shell:copy_test_netscape_plugin | |
| 425 # exists. | |
| 426 #data += [ "$root_out_dir/plugins/np_test_netscape_plugin.dll" ] | |
| 427 | |
| 428 if (symbol_level != 0) { | 421 if (symbol_level != 0) { |
| 429 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] | 422 data += [ "$root_out_dir/content_browsertests.exe.pdb" ] |
| 430 } | 423 } |
| 431 } | 424 } |
| 432 } | 425 } |
| 433 } | 426 } |
| 434 | 427 |
| 435 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 428 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 436 | 429 |
| 437 configs += [ | 430 configs += [ |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 "//gpu:test_support", | 1012 "//gpu:test_support", |
| 1020 "//media/base/android", | 1013 "//media/base/android", |
| 1021 "//media/base/android:media_java", | 1014 "//media/base/android:media_java", |
| 1022 "//media/capture/video/android:capture_java", | 1015 "//media/capture/video/android:capture_java", |
| 1023 "//testing/gmock", | 1016 "//testing/gmock", |
| 1024 "//ui/android:ui_java", | 1017 "//ui/android:ui_java", |
| 1025 ] | 1018 ] |
| 1026 } | 1019 } |
| 1027 } | 1020 } |
| 1028 } | 1021 } |
| OLD | NEW |