| 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("//third_party/WebKit/Source/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
| 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 9 import("//third_party/WebKit/Source/modules/modules.gni") | 9 import("//third_party/WebKit/Source/modules/modules.gni") |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 if (!is_posix) { | 42 if (!is_posix) { |
| 43 sources -= [ "webdatabase/sqlite/SQLiteFileSystemPosix.cpp" ] | 43 sources -= [ "webdatabase/sqlite/SQLiteFileSystemPosix.cpp" ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 configs += [ | 46 configs += [ |
| 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 48 "//build/config/compiler:no_size_t_to_int_warning", | 48 "//build/config/compiler:no_size_t_to_int_warning", |
| 49 "//third_party/WebKit/Source:config", | 49 "//third_party/WebKit/Source:config", |
| 50 "//third_party/WebKit/Source:non_test_config", | 50 "//third_party/WebKit/Source:non_test_config", |
| 51 "//third_party/WebKit/Source:inside_blink", | 51 "//third_party/WebKit/Source:inside_blink", |
| 52 "//third_party/WebKit/Source/core:blink_core_pch", |
| 52 ] | 53 ] |
| 53 | 54 |
| 54 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] | 55 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] |
| 55 | 56 |
| 56 deps = [ | 57 deps = [ |
| 57 ":make_modules_generated", | 58 ":make_modules_generated", |
| 58 "//components/webmessaging/public/interfaces:interfaces_blink", | 59 "//components/webmessaging/public/interfaces:interfaces_blink", |
| 59 "//device/battery:mojo_bindings_blink", | 60 "//device/battery:mojo_bindings_blink", |
| 60 "//device/nfc:mojo_bindings_blink", | 61 "//device/nfc:mojo_bindings_blink", |
| 61 "//device/usb/public/interfaces:interfaces_blink", | 62 "//device/usb/public/interfaces:interfaces_blink", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 84 source_set("modules_testing") { | 85 source_set("modules_testing") { |
| 85 sources = modules_testing_files | 86 sources = modules_testing_files |
| 86 sources += [ | 87 sources += [ |
| 87 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", | 88 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", |
| 88 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", | 89 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", |
| 89 ] | 90 ] |
| 90 | 91 |
| 91 configs += [ | 92 configs += [ |
| 92 "//third_party/WebKit/Source:config", | 93 "//third_party/WebKit/Source:config", |
| 93 "//third_party/WebKit/Source:inside_blink", | 94 "//third_party/WebKit/Source:inside_blink", |
| 95 "//third_party/WebKit/Source/core:blink_core_pch", |
| 94 ] | 96 ] |
| 95 | 97 |
| 96 deps = [ | 98 deps = [ |
| 97 "//third_party/WebKit/Source/core", | 99 "//third_party/WebKit/Source/core", |
| 98 "//third_party/WebKit/Source/modules", | 100 "//third_party/WebKit/Source/modules", |
| 99 ] | 101 ] |
| 100 } | 102 } |
| 101 | 103 |
| 102 action("module_names") { | 104 action("module_names") { |
| 103 script = "../build/scripts/make_names.py" | 105 script = "../build/scripts/make_names.py" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 118 } | 120 } |
| 119 | 121 |
| 120 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 122 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 121 group("make_modules_generated") { | 123 group("make_modules_generated") { |
| 122 public_deps = [ | 124 public_deps = [ |
| 123 ":module_names", | 125 ":module_names", |
| 124 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 126 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 125 "//third_party/WebKit/Source/core:core_event_interfaces", | 127 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 126 ] | 128 ] |
| 127 } | 129 } |
| OLD | NEW |