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") |
11 import("//third_party/WebKit/Source/modules/modules.gni") | 11 import("//third_party/WebKit/Source/modules/modules.gni") |
| 12 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") |
12 | 13 |
13 visibility = [ "//third_party/WebKit/Source/*" ] | 14 visibility = [ "//third_party/WebKit/Source/*" ] |
14 | 15 |
15 if (!is_component_build && is_win && is_official_build) { | 16 if (!is_component_build && is_win && is_official_build) { |
16 # This target as a static library (for non-component builds) is >2GB for | 17 # This target as a static library (for non-component builds) is >2GB for |
17 # official builds on Windows. This causes linking fail. As a workaround, | 18 # official builds on Windows. This causes linking fail. As a workaround, |
18 # force using a split static library for this configuration. | 19 # force using a split static library for this configuration. |
19 modules_target_type = "split_static_library" | 20 modules_target_type = "split_static_library" |
20 } else { | 21 } else { |
21 modules_target_type = "component" | 22 modules_target_type = "component" |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 ":modules", | 238 ":modules", |
238 ":modules_testing", | 239 ":modules_testing", |
239 "//skia", | 240 "//skia", |
240 "//testing/gmock", | 241 "//testing/gmock", |
241 "//testing/gtest", | 242 "//testing/gtest", |
242 "//third_party/WebKit/Source/core", | 243 "//third_party/WebKit/Source/core", |
243 "//third_party/WebKit/Source/wtf", | 244 "//third_party/WebKit/Source/wtf", |
244 "//v8", | 245 "//v8", |
245 ] | 246 ] |
246 } | 247 } |
OLD | NEW |