| 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/build/make_file_arrays.gni") | 8 import("//third_party/WebKit/Source/build/make_file_arrays.gni") |
| 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 9 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
| 10 | 11 |
| 11 visibility = "//third_party/WebKit/Source/*" | 12 visibility = "//third_party/WebKit/Source/*" |
| 12 | 13 |
| 13 # GYP version: WebKit/Source/modules/modules.gyp:modules | 14 # GYP version: WebKit/Source/modules/modules.gyp:modules |
| 14 source_set("modules") { | 15 source_set("modules") { |
| 15 visibility = "//third_party/WebKit/*" | 16 visibility = "//third_party/WebKit/*" |
| 16 | 17 |
| 17 sources = rebase_path(modules_files, ".", "//") | 18 sources = rebase_path(modules_files, ".", "//") |
| 19 sources += bindings_modules_v8_files |
| 18 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") | 20 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") |
| 19 | 21 |
| 20 if (!is_win) { | 22 if (!is_win) { |
| 21 sources -= [ | 23 sources -= [ |
| 22 "webdatabase/sqlite/SQLiteFileSystemWin.cpp", | 24 "webdatabase/sqlite/SQLiteFileSystemWin.cpp", |
| 23 ] | 25 ] |
| 24 } | 26 } |
| 25 if (!is_posix) { | 27 if (!is_posix) { |
| 26 sources -= [ | 28 sources -= [ |
| 27 "webdatabase/sqlite/SQLiteFileSystemPosix.cpp", | 29 "webdatabase/sqlite/SQLiteFileSystemPosix.cpp", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ] | 94 ] |
| 93 } | 95 } |
| 94 | 96 |
| 95 # GYP version: WebKit/Source/modules/modules.gyp:make_modules_generated | 97 # GYP version: WebKit/Source/modules/modules.gyp:make_modules_generated |
| 96 group("make_modules_generated") { | 98 group("make_modules_generated") { |
| 97 deps = [ | 99 deps = [ |
| 98 "//third_party/WebKit/Source/core:core_event_interfaces", | 100 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 99 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 101 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 100 ] | 102 ] |
| 101 } | 103 } |
| OLD | NEW |