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