| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "//third_party/WebKit/Source/core", | 52 "//third_party/WebKit/Source/core", |
| 53 "//third_party/WebKit/public:mojo_bindings", | 53 "//third_party/WebKit/public:mojo_bindings", |
| 54 "//third_party/WebKit/public:mojo_bindings_blink", | 54 "//third_party/WebKit/public:mojo_bindings_blink", |
| 55 "//third_party/icu", | 55 "//third_party/icu", |
| 56 "//third_party/sqlite", | 56 "//third_party/sqlite", |
| 57 "//third_party/zlib", | 57 "//third_party/zlib", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 if (is_win) { | 60 if (is_win) { |
| 61 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. | 61 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. |
| 62 # TODO(GYP) | |
| 63 # Shard this taret into parts to work around linker limitations. | |
| 64 # on link time code generation builds. | |
| 65 #[buildtype=="Official"', { | |
| 66 # 'msvs_shard': 5, | |
| 67 #}], | |
| 68 } | 62 } |
| 69 | 63 |
| 70 if (remove_webcore_debug_symbols) { | 64 if (remove_webcore_debug_symbols) { |
| 71 configs -= [ "//build/config/compiler:default_symbols" ] | 65 configs -= [ "//build/config/compiler:default_symbols" ] |
| 72 configs += [ "//build/config/compiler:no_symbols" ] | 66 configs += [ "//build/config/compiler:no_symbols" ] |
| 73 } | 67 } |
| 74 } | 68 } |
| 75 | 69 |
| 76 # GYP version: WebKit/Source/modules/modules.gyp:modules_testing | 70 # GYP version: WebKit/Source/modules/modules.gyp:modules_testing |
| 77 source_set("modules_testing") { | 71 source_set("modules_testing") { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 } | 105 } |
| 112 | 106 |
| 113 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 107 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 114 group("make_modules_generated") { | 108 group("make_modules_generated") { |
| 115 public_deps = [ | 109 public_deps = [ |
| 116 ":module_names", | 110 ":module_names", |
| 117 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 111 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 118 "//third_party/WebKit/Source/core:core_event_interfaces", | 112 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 119 ] | 113 ] |
| 120 } | 114 } |
| OLD | NEW |