| 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/make_file_arrays.gni") | |
| 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 9 import("//third_party/WebKit/Source/modules/modules.gni") |
| 11 | 10 |
| 12 visibility = [ "//third_party/WebKit/Source/*" ] | 11 visibility = [ "//third_party/WebKit/Source/*" ] |
| 13 | 12 |
| 14 # GYP version: WebKit/Source/modules/modules.gyp:modules | 13 # GYP version: WebKit/Source/modules/modules.gyp:modules |
| 15 source_set("modules") { | 14 source_set("modules") { |
| 16 visibility = [] # Allow re-assignment of list. | 15 visibility = [] # Allow re-assignment of list. |
| 17 visibility = [ "//third_party/WebKit/*" ] | 16 visibility = [ "//third_party/WebKit/*" ] |
| 18 | 17 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 } | 83 } |
| 85 | 84 |
| 86 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 85 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 87 group("make_modules_generated") { | 86 group("make_modules_generated") { |
| 88 deps = [ | 87 deps = [ |
| 89 "//third_party/WebKit/Source/core:core_event_interfaces", | 88 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 90 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 89 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 91 ":module_names", | 90 ":module_names", |
| 92 ] | 91 ] |
| 93 } | 92 } |
| OLD | NEW |