| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "//third_party/WebKit/Source/modules/webusb", | 158 "//third_party/WebKit/Source/modules/webusb", |
| 159 "//third_party/icu", | 159 "//third_party/icu", |
| 160 "//third_party/sqlite", | 160 "//third_party/sqlite", |
| 161 "//third_party/zlib", | 161 "//third_party/zlib", |
| 162 ] | 162 ] |
| 163 | 163 |
| 164 if (is_win) { | 164 if (is_win) { |
| 165 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. | 165 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. |
| 166 } | 166 } |
| 167 | 167 |
| 168 if (is_mac) { |
| 169 libs = [ |
| 170 "Carbon.framework", |
| 171 "Foundation.framework", |
| 172 "QuartzCore.framework", |
| 173 ] |
| 174 } |
| 175 |
| 168 if (remove_webcore_debug_symbols) { | 176 if (remove_webcore_debug_symbols) { |
| 169 configs -= [ "//build/config/compiler:default_symbols" ] | 177 configs -= [ "//build/config/compiler:default_symbols" ] |
| 170 configs += [ "//build/config/compiler:no_symbols" ] | 178 configs += [ "//build/config/compiler:no_symbols" ] |
| 171 } | 179 } |
| 172 } | 180 } |
| 173 | 181 |
| 174 source_set("modules_testing") { | 182 source_set("modules_testing") { |
| 175 sources = [ | 183 sources = [ |
| 176 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", | 184 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", |
| 177 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", | 185 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 ":modules_testing", | 301 ":modules_testing", |
| 294 "//components/payments:payment_request_blink", | 302 "//components/payments:payment_request_blink", |
| 295 "//skia", | 303 "//skia", |
| 296 "//testing/gmock", | 304 "//testing/gmock", |
| 297 "//testing/gtest", | 305 "//testing/gtest", |
| 298 "//third_party/WebKit/Source/core", | 306 "//third_party/WebKit/Source/core", |
| 299 "//third_party/WebKit/Source/wtf", | 307 "//third_party/WebKit/Source/wtf", |
| 300 "//v8", | 308 "//v8", |
| 301 ] | 309 ] |
| 302 } | 310 } |
| OLD | NEW |