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

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

Issue 1311913002: [sqlite] Remove WebDatabase externs and depend on what you use. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Doc the #define Created 5 years, 4 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
« no previous file with comments | « Source/core/core.gyp ('k') | Source/modules/modules.gyp » ('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/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 25 matching lines...) Expand all
36 configs += [ 36 configs += [
37 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 37 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
38 "//build/config/compiler:no_size_t_to_int_warning", 38 "//build/config/compiler:no_size_t_to_int_warning",
39 "//third_party/WebKit/Source:config", 39 "//third_party/WebKit/Source:config",
40 "//third_party/WebKit/Source:inside_blink", 40 "//third_party/WebKit/Source:inside_blink",
41 ] 41 ]
42 42
43 deps = [ 43 deps = [
44 ":make_modules_generated", 44 ":make_modules_generated",
45 "//third_party/WebKit/Source/core", 45 "//third_party/WebKit/Source/core",
46 "//third_party/icu",
46 "//third_party/sqlite", 47 "//third_party/sqlite",
47 "//third_party/zlib", 48 "//third_party/zlib",
48 ] 49 ]
49 50
50 if (is_win) { 51 if (is_win) {
51 cflags = [ 52 cflags = [
52 "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits. 53 "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits.
53 ] 54 ]
54 # TODO(GYP) 55 # TODO(GYP)
55 # Shard this taret into parts to work around linker limitations. 56 # Shard this taret into parts to work around linker limitations.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 98 }
98 99
99 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d 100 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d
100 group("make_modules_generated") { 101 group("make_modules_generated") {
101 deps = [ 102 deps = [
102 "//third_party/WebKit/Source/core:core_event_interfaces", 103 "//third_party/WebKit/Source/core:core_event_interfaces",
103 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 104 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
104 ":module_names", 105 ":module_names",
105 ] 106 ]
106 } 107 }
OLDNEW
« no previous file with comments | « Source/core/core.gyp ('k') | Source/modules/modules.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698