| 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/split_static_library.gni") | 5 import("//build/split_static_library.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.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/bindings/modules/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "//third_party/WebKit/Source/modules/webgl", | 156 "//third_party/WebKit/Source/modules/webgl", |
| 157 "//third_party/WebKit/Source/modules/webmidi", | 157 "//third_party/WebKit/Source/modules/webmidi", |
| 158 "//third_party/WebKit/Source/modules/webshare", | 158 "//third_party/WebKit/Source/modules/webshare", |
| 159 "//third_party/WebKit/Source/modules/websockets", | 159 "//third_party/WebKit/Source/modules/websockets", |
| 160 "//third_party/WebKit/Source/modules/webusb", | 160 "//third_party/WebKit/Source/modules/webusb", |
| 161 "//third_party/icu", | 161 "//third_party/icu", |
| 162 "//third_party/sqlite", | 162 "//third_party/sqlite", |
| 163 "//third_party/zlib", | 163 "//third_party/zlib", |
| 164 ] | 164 ] |
| 165 | 165 |
| 166 public_deps = [ |
| 167 "//services/shape_detection/public/interfaces", |
| 168 ] |
| 169 |
| 166 if (is_win) { | 170 if (is_win) { |
| 167 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. | 171 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. |
| 168 } | 172 } |
| 169 | 173 |
| 170 if (remove_webcore_debug_symbols) { | 174 if (remove_webcore_debug_symbols) { |
| 171 configs -= [ "//build/config/compiler:default_symbols" ] | 175 configs -= [ "//build/config/compiler:default_symbols" ] |
| 172 configs += [ "//build/config/compiler:no_symbols" ] | 176 configs += [ "//build/config/compiler:no_symbols" ] |
| 173 } | 177 } |
| 174 } | 178 } |
| 175 | 179 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 ":modules_testing", | 309 ":modules_testing", |
| 306 "//components/payments:payment_request_blink", | 310 "//components/payments:payment_request_blink", |
| 307 "//skia", | 311 "//skia", |
| 308 "//testing/gmock", | 312 "//testing/gmock", |
| 309 "//testing/gtest", | 313 "//testing/gtest", |
| 310 "//third_party/WebKit/Source/core", | 314 "//third_party/WebKit/Source/core", |
| 311 "//third_party/WebKit/Source/wtf", | 315 "//third_party/WebKit/Source/wtf", |
| 312 "//v8", | 316 "//v8", |
| 313 ] | 317 ] |
| 314 } | 318 } |
| OLD | NEW |