Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 6
7 gypi_values = exec_script("//build/gypi_to_gn.py", 7 gypi_values = exec_script("//build/gypi_to_gn.py",
8 [ rebase_path("devtools.gypi") ], 8 [ rebase_path("devtools.gypi") ],
9 "scope", 9 "scope",
10 [ "devtools.gypi" ]) 10 [ "devtools.gypi" ])
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "front_end/inspector.html", 258 "front_end/inspector.html",
259 "front_end/toolbox.html", 259 "front_end/toolbox.html",
260 ] 260 ]
261 261
262 outputs = [ 262 outputs = [
263 resources_out_dir + "inspector.html", 263 resources_out_dir + "inspector.html",
264 resources_out_dir + "toolbox.html", 264 resources_out_dir + "toolbox.html",
265 ] 265 ]
266 266
267 deps = [ 267 deps = [
268 ":frontend_protocol_sources",
268 ":supported_css_properties", 269 ":supported_css_properties",
269 ":frontend_protocol_sources",
270 ] 270 ]
271 271
272 if (debug_devtools) { 272 if (debug_devtools) {
273 deps += [ ":copy_debug_non_modules" ] 273 deps += [ ":copy_debug_non_modules" ]
274 274
275 debug_mode = "1" 275 debug_mode = "1"
276 } else { 276 } else {
277 outputs += [ 277 outputs += [
278 resources_out_dir + "inspector.js", 278 resources_out_dir + "inspector.js",
279 resources_out_dir + "toolbox.js", 279 resources_out_dir + "toolbox.js",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 } 376 }
377 377
378 concatenate_css("concatenated_inspector_css") { 378 concatenate_css("concatenated_inspector_css") {
379 app_name = "inspector" 379 app_name = "inspector"
380 } 380 }
381 381
382 concatenate_css("concatenated_toolbox_css") { 382 concatenate_css("concatenated_toolbox_css") {
383 app_name = "toolbox" 383 app_name = "toolbox"
384 } 384 }
385 } 385 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698