| 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 12 matching lines...) Expand all Loading... |
| 23 "//third_party/icu", | 23 "//third_party/icu", |
| 24 "//ui/gfx/geometry", | 24 "//ui/gfx/geometry", |
| 25 "//v8", | 25 "//v8", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 configs += [ | 28 configs += [ |
| 29 "//build/config/compiler:wexit_time_destructors", | 29 "//build/config/compiler:wexit_time_destructors", |
| 30 "//third_party/WebKit/Source:config", | 30 "//third_party/WebKit/Source:config", |
| 31 "//third_party/WebKit/Source:inside_blink", | 31 "//third_party/WebKit/Source:inside_blink", |
| 32 "//third_party/WebKit/Source:non_test_config", | 32 "//third_party/WebKit/Source:non_test_config", |
| 33 "//third_party/WebKit/Source/core:blink_core_pch", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] | 36 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] |
| 36 | 37 |
| 37 sources = [ | 38 sources = [ |
| 38 "AssertMatchingEnums.cpp", | 39 "AssertMatchingEnums.cpp", |
| 39 "AudioOutputDeviceClientImpl.cpp", | 40 "AudioOutputDeviceClientImpl.cpp", |
| 40 "AudioOutputDeviceClientImpl.h", | 41 "AudioOutputDeviceClientImpl.h", |
| 41 "ChromeClientImpl.cpp", | 42 "ChromeClientImpl.cpp", |
| 42 "ChromeClientImpl.h", | 43 "ChromeClientImpl.h", |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 "//third_party/WebKit/Source/core:testing", | 289 "//third_party/WebKit/Source/core:testing", |
| 289 "//third_party/WebKit/Source/modules:modules_testing", | 290 "//third_party/WebKit/Source/modules:modules_testing", |
| 290 "//third_party/WebKit/Source/wtf", | 291 "//third_party/WebKit/Source/wtf", |
| 291 "//v8", | 292 "//v8", |
| 292 ] | 293 ] |
| 293 | 294 |
| 294 sources = [ | 295 sources = [ |
| 295 "WebTestingSupport.cpp", | 296 "WebTestingSupport.cpp", |
| 296 ] | 297 ] |
| 297 | 298 |
| 298 configs += [ "//third_party/WebKit/Source:config" ] | 299 configs += [ |
| 300 "//third_party/WebKit/Source:config", |
| 301 "//third_party/WebKit/Source/core:blink_core_pch", |
| 302 ] |
| 299 | 303 |
| 300 include_dirs = [ "$root_gen_dir/blink" ] | 304 include_dirs = [ "$root_gen_dir/blink" ] |
| 301 } | 305 } |
| 302 | 306 |
| 303 group("webkit_unit_tests_data") { | 307 group("webkit_unit_tests_data") { |
| 304 data = [ | 308 data = [ |
| 305 "tests/data/", | 309 "tests/data/", |
| 306 "../core/paint/test_data/", | 310 "../core/paint/test_data/", |
| 307 ] | 311 ] |
| 308 } | 312 } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 ] | 421 ] |
| 418 | 422 |
| 419 data_deps = [ | 423 data_deps = [ |
| 420 ":webkit_unit_tests_data", | 424 ":webkit_unit_tests_data", |
| 421 "//content/shell:pak", | 425 "//content/shell:pak", |
| 422 ] | 426 ] |
| 423 | 427 |
| 424 configs += [ | 428 configs += [ |
| 425 "//third_party/WebKit/Source:config", | 429 "//third_party/WebKit/Source:config", |
| 426 "//third_party/WebKit/Source:inside_blink", | 430 "//third_party/WebKit/Source:inside_blink", |
| 431 "//third_party/WebKit/Source/core:blink_core_pch", |
| 427 ] | 432 ] |
| 428 | 433 |
| 429 if (is_android) { | 434 if (is_android) { |
| 430 deps += [ | 435 deps += [ |
| 431 "//base:base_java", | 436 "//base:base_java", |
| 432 "//content/public/android:content_java", | 437 "//content/public/android:content_java", |
| 433 "//content/shell/android:content_shell_assets", | 438 "//content/shell/android:content_shell_assets", |
| 434 "//net/android:net_java", | 439 "//net/android:net_java", |
| 435 ] | 440 ] |
| 436 } | 441 } |
| 437 } | 442 } |
| OLD | NEW |