| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 configs -= [ "//build/config/compiler:default_symbols" ] | 286 configs -= [ "//build/config/compiler:default_symbols" ] |
| 287 configs += [ "//build/config/compiler:no_symbols" ] | 287 configs += [ "//build/config/compiler:no_symbols" ] |
| 288 } | 288 } |
| 289 } | 289 } |
| 290 | 290 |
| 291 static_library("test_support") { | 291 static_library("test_support") { |
| 292 deps = [ | 292 deps = [ |
| 293 "//skia", | 293 "//skia", |
| 294 "//third_party/WebKit/Source/core:testing", | 294 "//third_party/WebKit/Source/core:testing", |
| 295 "//third_party/WebKit/Source/modules:modules_testing", | 295 "//third_party/WebKit/Source/modules:modules_testing", |
| 296 "//third_party/WebKit/Source/wtf", | 296 "//third_party/WebKit/Source/platform/wtf", |
| 297 "//v8", | 297 "//v8", |
| 298 ] | 298 ] |
| 299 | 299 |
| 300 sources = [ | 300 sources = [ |
| 301 "WebTestingSupport.cpp", | 301 "WebTestingSupport.cpp", |
| 302 ] | 302 ] |
| 303 | 303 |
| 304 configs += [ | 304 configs += [ |
| 305 "//third_party/WebKit/Source:config", | 305 "//third_party/WebKit/Source:config", |
| 306 "//third_party/WebKit/Source/core:blink_core_pch", | 306 "//third_party/WebKit/Source/core:blink_core_pch", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 "//base/test:test_support", | 423 "//base/test:test_support", |
| 424 "//content/test:test_support", | 424 "//content/test:test_support", |
| 425 "//device/wake_lock/public/interfaces:interfaces_blink", | 425 "//device/wake_lock/public/interfaces:interfaces_blink", |
| 426 "//gpu:test_support", | 426 "//gpu:test_support", |
| 427 "//testing/gmock", | 427 "//testing/gmock", |
| 428 "//testing/gtest", | 428 "//testing/gtest", |
| 429 "//third_party/WebKit/Source/core:unit_tests", | 429 "//third_party/WebKit/Source/core:unit_tests", |
| 430 "//third_party/WebKit/Source/modules:unit_tests", | 430 "//third_party/WebKit/Source/modules:unit_tests", |
| 431 "//third_party/WebKit/Source/platform:test_support", | 431 "//third_party/WebKit/Source/platform:test_support", |
| 432 "//third_party/WebKit/Source/platform:unit_tests", | 432 "//third_party/WebKit/Source/platform:unit_tests", |
| 433 "//third_party/WebKit/Source/wtf", | 433 "//third_party/WebKit/Source/platform/wtf", |
| 434 "//third_party/libwebp", | 434 "//third_party/libwebp", |
| 435 "//third_party/zlib", | 435 "//third_party/zlib", |
| 436 "//url", | 436 "//url", |
| 437 "//v8", | 437 "//v8", |
| 438 ] | 438 ] |
| 439 | 439 |
| 440 data_deps = [ | 440 data_deps = [ |
| 441 ":webkit_unit_tests_data", | 441 ":webkit_unit_tests_data", |
| 442 "//content/shell:pak", | 442 "//content/shell:pak", |
| 443 ] | 443 ] |
| 444 | 444 |
| 445 configs += [ | 445 configs += [ |
| 446 "//third_party/WebKit/Source:config", | 446 "//third_party/WebKit/Source:config", |
| 447 "//third_party/WebKit/Source:inside_blink", | 447 "//third_party/WebKit/Source:inside_blink", |
| 448 "//third_party/WebKit/Source/core:blink_core_pch", | 448 "//third_party/WebKit/Source/core:blink_core_pch", |
| 449 ] | 449 ] |
| 450 | 450 |
| 451 if (is_android) { | 451 if (is_android) { |
| 452 deps += [ | 452 deps += [ |
| 453 "//base:base_java", | 453 "//base:base_java", |
| 454 "//content/public/android:content_java", | 454 "//content/public/android:content_java", |
| 455 "//content/shell/android:content_shell_assets", | 455 "//content/shell/android:content_shell_assets", |
| 456 "//net/android:net_java", | 456 "//net/android:net_java", |
| 457 ] | 457 ] |
| 458 } | 458 } |
| 459 } | 459 } |
| OLD | NEW |