| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 if (is_component_build) { | 520 if (is_component_build) { |
| 521 check_includes = false | 521 check_includes = false |
| 522 } | 522 } |
| 523 | 523 |
| 524 sources = [ | 524 sources = [ |
| 525 "../public/test/test_runner_support.h", | 525 "../public/test/test_runner_support.h", |
| 526 "test_runner_support.cc", | 526 "test_runner_support.cc", |
| 527 ] | 527 ] |
| 528 | 528 |
| 529 deps = [ | 529 deps = [ |
| 530 "//content/public/renderer", |
| 530 "//content/renderer:for_content_tests", | 531 "//content/renderer:for_content_tests", |
| 531 "//third_party/WebKit/public:blink", | 532 "//third_party/WebKit/public:blink", |
| 532 ] | 533 ] |
| 533 } | 534 } |
| 534 | 535 |
| 535 if (is_android) { | 536 if (is_android) { |
| 536 import("//build/config/android/rules.gni") | 537 import("//build/config/android/rules.gni") |
| 537 | 538 |
| 538 jinja_template("content_browsertests_manifest") { | 539 jinja_template("content_browsertests_manifest") { |
| 539 testonly = true | 540 testonly = true |
| (...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1854 if (is_android) { | 1855 if (is_android) { |
| 1855 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1856 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1856 } | 1857 } |
| 1857 } | 1858 } |
| 1858 | 1859 |
| 1859 group("fuzzers") { | 1860 group("fuzzers") { |
| 1860 deps = [ | 1861 deps = [ |
| 1861 "//content/test/fuzzer", | 1862 "//content/test/fuzzer", |
| 1862 ] | 1863 ] |
| 1863 } | 1864 } |
| OLD | NEW |