Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: Source/modules/BUILD.gn

Issue 329993006: Implement main blink target in GN. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/BUILD.gn ('k') | Source/platform/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « Source/core/inspector/BUILD.gn ('k') | Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698