| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 ] | 59 ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 if (remove_webcore_debug_symbols) { | 62 if (remove_webcore_debug_symbols) { |
| 63 configs -= [ "//build/config/compiler:default_symbols" ] | 63 configs -= [ "//build/config/compiler:default_symbols" ] |
| 64 configs += [ "//build/config/compiler:no_symbols" ] | 64 configs += [ "//build/config/compiler:no_symbols" ] |
| 65 } | 65 } |
| 66 } | 66 } |
| 67 | 67 |
| 68 # GYP version: WebKit/Source/web/web.gyp:blink_web_test_support | 68 # GYP version: WebKit/Source/web/web.gyp:blink_web_test_support |
| 69 source_set("test_support") { | 69 static_library("test_support") { |
| 70 deps = [ | 70 deps = [ |
| 71 "//skia", | 71 "//skia", |
| 72 "//third_party/WebKit/Source/core:testing", | 72 "//third_party/WebKit/Source/core:testing", |
| 73 "//third_party/WebKit/Source/modules:modules_testing", | 73 "//third_party/WebKit/Source/modules:modules_testing", |
| 74 "//third_party/WebKit/Source/wtf", | 74 "//third_party/WebKit/Source/wtf", |
| 75 "//v8", | 75 "//v8", |
| 76 ] | 76 ] |
| 77 | 77 |
| 78 sources = [ | 78 sources = [ |
| 79 "WebTestingSupport.cpp", | 79 "WebTestingSupport.cpp", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 139 |
| 140 if (is_android) { | 140 if (is_android) { |
| 141 deps += [ | 141 deps += [ |
| 142 "//base:base_java", | 142 "//base:base_java", |
| 143 "//content/public/android:content_java", | 143 "//content/public/android:content_java", |
| 144 "//content/shell/android:content_shell_assets", | 144 "//content/shell/android:content_shell_assets", |
| 145 "//net/android:net_java", | 145 "//net/android:net_java", |
| 146 ] | 146 ] |
| 147 } | 147 } |
| 148 } | 148 } |
| OLD | NEW |