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