| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "EventTargetModules.h", | 59 "EventTargetModules.h", |
| 60 "ModulesExport.h", | 60 "ModulesExport.h", |
| 61 "ModulesInitializer.cpp", | 61 "ModulesInitializer.cpp", |
| 62 "ModulesInitializer.h", | 62 "ModulesInitializer.h", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 # Compile sources generated by module_names script. | 65 # Compile sources generated by module_names script. |
| 66 sources += get_target_outputs(":module_names") | 66 sources += get_target_outputs(":module_names") |
| 67 | 67 |
| 68 sources += bindings_modules_v8_files | 68 sources += bindings_modules_v8_files |
| 69 sources += rebase_path( | |
| 70 [ bindings_generated_v8_context_snapshot_external_references_file ], | |
| 71 ".", | |
| 72 "//") | |
| 73 | 69 |
| 74 configs += [ | 70 configs += [ |
| 75 ":modules_implementation", | 71 ":modules_implementation", |
| 76 | 72 |
| 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 73 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 78 "//build/config/compiler:no_size_t_to_int_warning", | 74 "//build/config/compiler:no_size_t_to_int_warning", |
| 79 "//third_party/WebKit/Source:config", | 75 "//third_party/WebKit/Source:config", |
| 80 "//third_party/WebKit/Source:non_test_config", | 76 "//third_party/WebKit/Source:non_test_config", |
| 81 "//third_party/WebKit/Source:inside_blink", | 77 "//third_party/WebKit/Source:inside_blink", |
| 82 "//third_party/WebKit/Source/core:blink_core_pch", | 78 "//third_party/WebKit/Source/core:blink_core_pch", |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 ":modules", | 328 ":modules", |
| 333 ":modules_testing", | 329 ":modules_testing", |
| 334 "//skia", | 330 "//skia", |
| 335 "//testing/gmock", | 331 "//testing/gmock", |
| 336 "//testing/gtest", | 332 "//testing/gtest", |
| 337 "//third_party/WebKit/Source/core", | 333 "//third_party/WebKit/Source/core", |
| 338 "//third_party/WebKit/Source/platform/wtf", | 334 "//third_party/WebKit/Source/platform/wtf", |
| 339 "//v8", | 335 "//v8", |
| 340 ] | 336 ] |
| 341 } | 337 } |
| OLD | NEW |