| 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/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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |