| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 } | 90 } |
| 92 | 91 |
| 93 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 92 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 94 group("make_modules_generated") { | 93 group("make_modules_generated") { |
| 95 deps = [ | 94 deps = [ |
| 96 "//third_party/WebKit/Source/core:core_event_interfaces", | 95 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 97 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 96 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 98 ":module_names", | 97 ":module_names", |
| 99 ] | 98 ] |
| 100 } | 99 } |
| OLD | NEW |