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") | 8 import("//third_party/WebKit/Source/build/make_file_arrays.gni") |
9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 configs += [ | 77 configs += [ |
78 "//third_party/WebKit/Source:config", | 78 "//third_party/WebKit/Source:config", |
79 "//third_party/WebKit/Source:inside_blink", | 79 "//third_party/WebKit/Source:inside_blink", |
80 ] | 80 ] |
81 | 81 |
82 deps = [ | 82 deps = [ |
83 "//third_party/WebKit/Source/core", | 83 "//third_party/WebKit/Source/core", |
84 ] | 84 ] |
85 } | 85 } |
86 | 86 |
87 # GYP version: WebKit/Source/modules/modules.gyp:make_modules_generated | 87 action("module_names") { |
| 88 script = "../build/scripts/make_names.py" |
| 89 |
| 90 module_names_in = "indexeddb/IndexedDBNames.in" |
| 91 inputs = make_names_files + [ module_names_in ] |
| 92 |
| 93 outputs = [ |
| 94 "$blink_modules_output_dir/IndexedDBNames.cpp", |
| 95 "$blink_modules_output_dir/IndexedDBNames.h", |
| 96 ] |
| 97 |
| 98 args = [ |
| 99 rebase_path(module_names_in, root_build_dir), |
| 100 "--output_dir", |
| 101 rebase_path(blink_modules_output_dir, root_build_dir), |
| 102 ] |
| 103 } |
| 104 |
| 105 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
88 group("make_modules_generated") { | 106 group("make_modules_generated") { |
89 deps = [ | 107 deps = [ |
90 "//third_party/WebKit/Source/core:core_event_interfaces", | 108 "//third_party/WebKit/Source/core:core_event_interfaces", |
91 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 109 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 110 ":module_names", |
92 ] | 111 ] |
93 } | 112 } |
OLD | NEW |