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

Side by Side Diff: content/shell/BUILD.gn

Issue 960413003: Apply gn format with 'sources' sorting to src/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-format-sort-2
Patch Set: . Created 5 years, 9 months 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 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 ] 391 ]
392 outputs = [ 392 outputs = [
393 "$root_out_dir/AHEM____.TTF", 393 "$root_out_dir/AHEM____.TTF",
394 ] 394 ]
395 } 395 }
396 } 396 }
397 if (use_x11) { 397 if (use_x11) {
398 copy("copy_x11_fonts") { 398 copy("copy_x11_fonts") {
399 visibility = [ ":*" ] 399 visibility = [ ":*" ]
400 sources = [ 400 sources = [
401 "renderer/test_runner/resources/fonts/fonts.conf",
402 "//third_party/gardiner_mod/GardinerModBug.ttf", 401 "//third_party/gardiner_mod/GardinerModBug.ttf",
403 "//third_party/gardiner_mod/GardinerModCat.ttf", 402 "//third_party/gardiner_mod/GardinerModCat.ttf",
403 "renderer/test_runner/resources/fonts/fonts.conf",
404 ] 404 ]
405 outputs = [ 405 outputs = [
406 "$root_out_dir/{{source_file_part}}", 406 "$root_out_dir/{{source_file_part}}",
407 ] 407 ]
408 } 408 }
409 } 409 }
410 if (is_android) { 410 if (is_android) {
411 copy("copy_android_fonts") { 411 copy("copy_android_fonts") {
412 visibility = [ ":*" ] 412 visibility = [ ":*" ]
413 sources = [ 413 sources = [
414 "renderer/test_runner/resources/fonts/android_fallback_fonts.xml",
414 "renderer/test_runner/resources/fonts/android_main_fonts.xml", 415 "renderer/test_runner/resources/fonts/android_main_fonts.xml",
415 "renderer/test_runner/resources/fonts/android_fallback_fonts.xml",
416 ] 416 ]
417 outputs = [ 417 outputs = [
418 "$root_out_dir/{{source_file_part}}", 418 "$root_out_dir/{{source_file_part}}",
419 ] 419 ]
420 } 420 }
421 } 421 }
422 422
423 group("resources") { 423 group("resources") {
424 public_deps = [ 424 public_deps = [
425 ":copy_shell_resources", 425 ":copy_shell_resources",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 # image diff rather than having content shell depend on it. 518 # image diff rather than having content shell depend on it.
519 datadeps = [ 519 datadeps = [
520 "//tools/imagediff($host_toolchain)", 520 "//tools/imagediff($host_toolchain)",
521 ] 521 ]
522 } 522 }
523 } 523 }
524 } else { 524 } else {
525 group("content_shell") { 525 group("content_shell") {
526 } 526 }
527 } 527 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698