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 27 matching lines...) Expand all Loading... |
38 | 38 |
39 if (modules_target_type == "split_static_library") { | 39 if (modules_target_type == "split_static_library") { |
40 split_count = 5 | 40 split_count = 5 |
41 } | 41 } |
42 | 42 |
43 visibility = [] # Allow re-assignment of list. | 43 visibility = [] # Allow re-assignment of list. |
44 visibility = [ "//third_party/WebKit/*" ] | 44 visibility = [ "//third_party/WebKit/*" ] |
45 | 45 |
46 sources = rebase_path(modules_files, ".", "//") | 46 sources = rebase_path(modules_files, ".", "//") |
47 sources += bindings_modules_v8_files | 47 sources += bindings_modules_v8_files |
48 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") | 48 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") |
49 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") | 49 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") |
50 sources += | 50 sources += |
51 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") | 51 rebase_path(bindings_modules_generated_partial_aggregate_files, ".", "//") |
52 sources += | 52 sources += |
53 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], | 53 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], |
54 ".", | 54 ".", |
55 "//") | 55 "//") |
56 | 56 |
57 configs += [ | 57 configs += [ |
58 ":modules_implementation", | 58 ":modules_implementation", |
59 | 59 |
60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
61 "//build/config/compiler:no_size_t_to_int_warning", | 61 "//build/config/compiler:no_size_t_to_int_warning", |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 ":modules", | 238 ":modules", |
239 ":modules_testing", | 239 ":modules_testing", |
240 "//skia", | 240 "//skia", |
241 "//testing/gmock", | 241 "//testing/gmock", |
242 "//testing/gtest", | 242 "//testing/gtest", |
243 "//third_party/WebKit/Source/core", | 243 "//third_party/WebKit/Source/core", |
244 "//third_party/WebKit/Source/wtf", | 244 "//third_party/WebKit/Source/wtf", |
245 "//v8", | 245 "//v8", |
246 ] | 246 ] |
247 } | 247 } |
OLD | NEW |