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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
7 | 7 |
8 devtools_embedder_scripts = [ | 8 devtools_embedder_scripts = [ |
9 "front_end/devtools.js", | 9 "front_end/devtools.js", |
10 "front_end/Tests.js", | 10 "front_end/Tests.js", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
164 "front_end/bindings/ResourceScriptMapping.js", | 164 "front_end/bindings/ResourceScriptMapping.js", |
165 "front_end/bindings/ResourceUtils.js", | 165 "front_end/bindings/ResourceUtils.js", |
166 "front_end/bindings/SASSSourceMapping.js", | 166 "front_end/bindings/SASSSourceMapping.js", |
167 "front_end/bindings/StylesSourceMapping.js", | 167 "front_end/bindings/StylesSourceMapping.js", |
168 "front_end/bindings/TempFile.js", | 168 "front_end/bindings/TempFile.js", |
169 ] | 169 ] |
170 devtools_persistence_js_files = [ "front_end/persistence/Persistence.js" ] | 170 devtools_persistence_js_files = [ "front_end/persistence/Persistence.js" ] |
171 devtools_platform_js_files = [ | 171 devtools_platform_js_files = [ |
172 "front_end/platform/DOMExtension.js", | 172 "front_end/platform/DOMExtension.js", |
173 "front_end/platform/utilities.js", | 173 "front_end/platform/utilities.js", |
174 "front_end/platform/Trie.js", | |
dgozman
2016/10/03 20:32:57
common
lushnikov
2016/10/03 22:56:22
Done.
| |
174 ] | 175 ] |
175 devtools_toolbox_bootstrap_js_files = | 176 devtools_toolbox_bootstrap_js_files = |
176 [ "front_end/toolbox_bootstrap/Toolbox.js" ] | 177 [ "front_end/toolbox_bootstrap/Toolbox.js" ] |
177 devtools_emulation_js_files = [ | 178 devtools_emulation_js_files = [ |
178 "front_end/emulation/devicesSettingsTab.css", | 179 "front_end/emulation/devicesSettingsTab.css", |
179 "front_end/emulation/deviceModeToolbar.css", | 180 "front_end/emulation/deviceModeToolbar.css", |
180 "front_end/emulation/deviceModeView.css", | 181 "front_end/emulation/deviceModeView.css", |
181 "front_end/emulation/inspectedPagePlaceholder.css", | 182 "front_end/emulation/inspectedPagePlaceholder.css", |
182 "front_end/emulation/mediaQueryInspector.css", | 183 "front_end/emulation/mediaQueryInspector.css", |
183 "front_end/emulation/sensors.css", | 184 "front_end/emulation/sensors.css", |
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1124 deps = [ | 1125 deps = [ |
1125 ":frontend_protocol_sources", | 1126 ":frontend_protocol_sources", |
1126 ":supported_css_properties", | 1127 ":supported_css_properties", |
1127 ] | 1128 ] |
1128 sources = generated_scripts | 1129 sources = generated_scripts |
1129 outputs = [ | 1130 outputs = [ |
1130 "$resources_out_debug_dir/{{source_file_part}}", | 1131 "$resources_out_debug_dir/{{source_file_part}}", |
1131 ] | 1132 ] |
1132 } | 1133 } |
1133 } | 1134 } |
OLD | NEW |