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

Side by Side Diff: chrome/BUILD.gn

Issue 985533002: Set up serving infrastructure for c/b/r/settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wait for onload. 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/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 "//chrome/browser/resources:net_internals_resources", 365 "//chrome/browser/resources:net_internals_resources",
366 "//chrome/browser/resources:password_manager_internals_resources", 366 "//chrome/browser/resources:password_manager_internals_resources",
367 "//chrome/browser/resources:signin_internals_resources", 367 "//chrome/browser/resources:signin_internals_resources",
368 "//chrome/browser/resources:sync_internals_resources", 368 "//chrome/browser/resources:sync_internals_resources",
369 "//chrome/browser/resources:translate_internals_resources", 369 "//chrome/browser/resources:translate_internals_resources",
370 ] 370 ]
371 if (!is_ios) { 371 if (!is_ios) {
372 deps += [ 372 deps += [
373 "//chrome/browser/resources:component_extension_resources", 373 "//chrome/browser/resources:component_extension_resources",
374 "//chrome/browser/resources:options_resources", 374 "//chrome/browser/resources:options_resources",
375 "//chrome/browser/resources:settings_resources",
375 ] 376 ]
376 } 377 }
377 378
378 if (enable_chromevox_next) { 379 if (enable_chromevox_next) {
379 deps += [ 380 deps += [
380 #'browser/resources/chromeos/chromevox2/chromevox.gyp:chromevox2', TODO(G YP) 381 #'browser/resources/chromeos/chromevox2/chromevox.gyp:chromevox2', TODO(G YP)
381 ] 382 ]
382 } else { 383 } else {
383 deps += [ 384 deps += [
384 #'browser/resources/chromeos/chromevox/chromevox.gyp:chromevox', TODO(GYP ) 385 #'browser/resources/chromeos/chromevox/chromevox.gyp:chromevox', TODO(GYP )
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 "//ui/resources", 460 "//ui/resources",
460 ] 461 ]
461 462
462 if (!is_ios && !is_android) { 463 if (!is_ios && !is_android) {
463 # New paks should be added here by default. 464 # New paks should be added here by default.
464 sources += [ 465 sources += [
465 "$root_gen_dir/blink/devtools_resources.pak", 466 "$root_gen_dir/blink/devtools_resources.pak",
466 "$root_gen_dir/chrome/component_extension_resources.pak", 467 "$root_gen_dir/chrome/component_extension_resources.pak",
467 "$root_gen_dir/chrome/options_resources.pak", 468 "$root_gen_dir/chrome/options_resources.pak",
468 "$root_gen_dir/chrome/quota_internals_resources.pak", 469 "$root_gen_dir/chrome/quota_internals_resources.pak",
470 "$root_gen_dir/chrome/settings_resources.pak",
469 "$root_gen_dir/chrome/sync_file_system_internals_resources.pak", 471 "$root_gen_dir/chrome/sync_file_system_internals_resources.pak",
470 "$root_gen_dir/chrome/webrtc_device_provider_resources.pak", 472 "$root_gen_dir/chrome/webrtc_device_provider_resources.pak",
471 ] 473 ]
472 deps += [ 474 deps += [
473 "//chrome/browser/devtools:webrtc_device_provider_resources", 475 "//chrome/browser/devtools:webrtc_device_provider_resources",
474 "//chrome/browser/resources:component_extension_resources", 476 "//chrome/browser/resources:component_extension_resources",
475 "//chrome/browser/resources:options_resources", 477 "//chrome/browser/resources:options_resources",
478 "//chrome/browser/resources:settings_resources",
476 "//chrome/browser/resources:quota_internals_resources", 479 "//chrome/browser/resources:quota_internals_resources",
477 "//chrome/browser/resources:sync_file_system_internals_resources", 480 "//chrome/browser/resources:sync_file_system_internals_resources",
478 "//content/browser/devtools:devtools_resources", 481 "//content/browser/devtools:devtools_resources",
479 ] 482 ]
480 } 483 }
481 if (!is_ios) { 484 if (!is_ios) {
482 sources += [ 485 sources += [
483 "$root_gen_dir/blink/public/resources/blink_resources.pak", 486 "$root_gen_dir/blink/public/resources/blink_resources.pak",
484 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", 487 "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
485 "$root_gen_dir/content/content_resources.pak", 488 "$root_gen_dir/content/content_resources.pak",
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 728
726 args = [ 729 args = [
727 rebase_path(infile, root_build_dir), 730 rebase_path(infile, root_build_dir),
728 rebase_path(outfile, root_build_dir), 731 rebase_path(outfile, root_build_dir),
729 "-e s/@@NAME@@/$name/", 732 "-e s/@@NAME@@/$name/",
730 "-e s/@@FILENAME@@/$filename/", 733 "-e s/@@FILENAME@@/$filename/",
731 "-e s/@@CONFDIR@@/$confdir/", 734 "-e s/@@CONFDIR@@/$confdir/",
732 ] 735 ]
733 } 736 }
734 } 737 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/BUILD.gn » ('j') | chrome/browser/resources/settings/a11y_page/demo.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698