| 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/make_file_arrays.gni") | 8 import("//third_party/WebKit/Source/build/make_file_arrays.gni") |
| 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
| 11 | 11 |
| 12 visibility = [ "//third_party/WebKit/Source/*" ] | 12 visibility = [ "//third_party/WebKit/Source/*" ] |
| 13 | 13 |
| 14 # GYP version: WebKit/Source/modules/modules.gyp:modules | 14 # GYP version: WebKit/Source/modules/modules.gyp:modules |
| 15 source_set("modules") { | 15 source_set("modules") { |
| 16 visibility = [] # Allow re-assignment of list. | 16 visibility = [] # Allow re-assignment of list. |
| 17 visibility = [ "//third_party/WebKit/*" ] | 17 visibility = [ "//third_party/WebKit/*" ] |
| 18 | 18 |
| 19 sources = rebase_path(modules_files, ".", "//") | 19 sources = rebase_path(modules_files, ".", "//") |
| 20 sources += bindings_modules_v8_files | 20 sources += bindings_modules_v8_files |
| 21 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") | 21 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") |
| 22 sources += rebase_path(bindings_modules_generated_partial_aggregate_files, "."
, "//") |
| 23 sources += rebase_path([ bindings_modules_generated_init_partial_interfaces_fi
le ], ".", "//") |
| 22 | 24 |
| 23 if (!is_win) { | 25 if (!is_win) { |
| 24 sources -= [ | 26 sources -= [ |
| 25 "webdatabase/sqlite/SQLiteFileSystemWin.cpp", | 27 "webdatabase/sqlite/SQLiteFileSystemWin.cpp", |
| 26 ] | 28 ] |
| 27 } | 29 } |
| 28 if (!is_posix) { | 30 if (!is_posix) { |
| 29 sources -= [ | 31 sources -= [ |
| 30 "webdatabase/sqlite/SQLiteFileSystemPosix.cpp", | 32 "webdatabase/sqlite/SQLiteFileSystemPosix.cpp", |
| 31 ] | 33 ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 47 cflags = [ | 49 cflags = [ |
| 48 "/wd4267", # Size to int truncations. | 50 "/wd4267", # Size to int truncations. |
| 49 "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits. | 51 "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits. |
| 50 ] | 52 ] |
| 51 } | 53 } |
| 52 } | 54 } |
| 53 | 55 |
| 54 # GYP version: WebKit/Source/modules/modules.gyp:modules_testing | 56 # GYP version: WebKit/Source/modules/modules.gyp:modules_testing |
| 55 source_set("modules_testing") { | 57 source_set("modules_testing") { |
| 56 sources = modules_testing_files | 58 sources = modules_testing_files |
| 59 sources += [ |
| 60 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", |
| 61 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", |
| 62 ] |
| 57 | 63 |
| 58 configs += [ | 64 configs += [ |
| 59 "//third_party/WebKit/Source:config", | 65 "//third_party/WebKit/Source:config", |
| 60 "//third_party/WebKit/Source:inside_blink", | 66 "//third_party/WebKit/Source:inside_blink", |
| 61 ] | 67 ] |
| 62 | 68 |
| 63 deps = [ | 69 deps = [ |
| 64 "//third_party/WebKit/Source/core", | 70 "//third_party/WebKit/Source/core", |
| 65 ] | 71 ] |
| 66 } | 72 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 84 } | 90 } |
| 85 | 91 |
| 86 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 92 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 87 group("make_modules_generated") { | 93 group("make_modules_generated") { |
| 88 deps = [ | 94 deps = [ |
| 89 "//third_party/WebKit/Source/core:core_event_interfaces", | 95 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 90 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 96 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 91 ":module_names", | 97 ":module_names", |
| 92 ] | 98 ] |
| 93 } | 99 } |
| OLD | NEW |