| 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/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 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 if (is_win) { | 46 if (is_win) { |
| 47 cflags = [ | 47 cflags = [ |
| 48 "/wd4267", # Size to int truncations. | 48 "/wd4267", # Size to int truncations. |
| 49 "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits. | 49 "/wd4334", # Result of 32-bit shift implicitly converted to 64 bits. |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 } | 52 } |
| 53 | 53 |
| 54 # GYP version: WebKit/Source/modules/modules.gyp:modules (FetchPolyfill action) | 54 # GYP version: WebKit/Source/modules/modules.gyp:modules (FetchPolyfill action) |
| 55 make_file_arrays("modules_fetch_polyfill") { | 55 make_file_arrays("modules_fetch_polyfill") { |
| 56 filename = "FetchPolyfill" | 56 filename = "modules/FetchPolyfill" |
| 57 resources = [ | 57 resources = [ |
| 58 "serviceworkers/polyfills/fetchPolyfill.js", | 58 "serviceworkers/polyfills/fetchPolyfill.js", |
| 59 ] | 59 ] |
| 60 namespace = "WebCore" | 60 namespace = "WebCore" |
| 61 } | 61 } |
| 62 | 62 |
| 63 # GYP version: WebKit/Source/modules/modules.gyp:modules (CachePolyfill action) | 63 # GYP version: WebKit/Source/modules/modules.gyp:modules (CachePolyfill action) |
| 64 make_file_arrays("modules_cache_polyfill") { | 64 make_file_arrays("modules_cache_polyfill") { |
| 65 filename = "CachePolyfill" | 65 filename = "modules/CachePolyfill" |
| 66 resources = [ | 66 resources = [ |
| 67 "serviceworkers/polyfills/cachePolyfill.js", | 67 "serviceworkers/polyfills/cachePolyfill.js", |
| 68 ] | 68 ] |
| 69 namespace = "WebCore" | 69 namespace = "WebCore" |
| 70 } | 70 } |
| 71 | 71 |
| 72 # GYP version: WebKit/Source/modules/modules.gyp:modules (CacheStoragePolyfill a
ction) | 72 # GYP version: WebKit/Source/modules/modules.gyp:modules (CacheStoragePolyfill a
ction) |
| 73 make_file_arrays("modules_cache_storage_polyfill") { | 73 make_file_arrays("modules_cache_storage_polyfill") { |
| 74 filename = "CacheStoragePolyfill" | 74 filename = "modules/CacheStoragePolyfill" |
| 75 resources = [ | 75 resources = [ |
| 76 "serviceworkers/polyfills/cacheStoragePolyfill.js", | 76 "serviceworkers/polyfills/cacheStoragePolyfill.js", |
| 77 ] | 77 ] |
| 78 namespace = "WebCore" | 78 namespace = "WebCore" |
| 79 } | 79 } |
| 80 | 80 |
| 81 # GYP version: WebKit/Source/modules/modules.gyp:modules_testing | 81 # GYP version: WebKit/Source/modules/modules.gyp:modules_testing |
| 82 source_set("modules_testing") { | 82 source_set("modules_testing") { |
| 83 sources = modules_testing_files | 83 sources = modules_testing_files |
| 84 | 84 |
| 85 configs += [ | 85 configs += [ |
| 86 "//third_party/WebKit/Source:config", | 86 "//third_party/WebKit/Source:config", |
| 87 "//third_party/WebKit/Source:inside_blink", | 87 "//third_party/WebKit/Source:inside_blink", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 "//third_party/WebKit/Source/core", | 91 "//third_party/WebKit/Source/core", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 # GYP version: WebKit/Source/modules/modules.gyp:make_modules_generated | 95 # GYP version: WebKit/Source/modules/modules.gyp:make_modules_generated |
| 96 group("make_modules_generated") { | 96 group("make_modules_generated") { |
| 97 deps = [ | 97 deps = [ |
| 98 "//third_party/WebKit/Source/core:core_event_interfaces", | 98 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 99 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 99 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 100 ] | 100 ] |
| 101 } | 101 } |
| OLD | NEW |