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

Side by Side Diff: chrome/BUILD.gn

Issue 941973003: New OOBE implementation skeleton using WUG toolkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix owners. 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 } 491 }
492 if (!is_ios) { 492 if (!is_ios) {
493 sources += [ 493 sources += [
494 "$root_gen_dir/blink/public/resources/blink_resources.pak", 494 "$root_gen_dir/blink/public/resources/blink_resources.pak",
495 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", 495 "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
496 "$root_gen_dir/content/content_resources.pak", 496 "$root_gen_dir/content/content_resources.pak",
497 ] 497 ]
498 } 498 }
499 if (is_chromeos) { 499 if (is_chromeos) {
500 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] 500 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ]
501 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ]
501 deps += [ "//ui/file_manager:resources" ] 502 deps += [ "//ui/file_manager:resources" ]
503 deps += [ "//ui/oobe:resources" ]
502 } 504 }
503 if (enable_extensions) { 505 if (enable_extensions) {
504 sources += [ 506 sources += [
505 "$root_gen_dir/chrome/extensions_api_resources.pak", 507 "$root_gen_dir/chrome/extensions_api_resources.pak",
506 "$root_gen_dir/extensions/extensions_renderer_resources.pak", 508 "$root_gen_dir/extensions/extensions_renderer_resources.pak",
507 "$root_gen_dir/extensions/extensions_resources.pak", 509 "$root_gen_dir/extensions/extensions_resources.pak",
508 ] 510 ]
509 deps += [ "//chrome/common:extensions_api_resources" ] 511 deps += [ "//chrome/common:extensions_api_resources" ]
510 } 512 }
511 513
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 735
734 args = [ 736 args = [
735 rebase_path(infile, root_build_dir), 737 rebase_path(infile, root_build_dir),
736 rebase_path(outfile, root_build_dir), 738 rebase_path(outfile, root_build_dir),
737 "-e s/@@NAME@@/$name/", 739 "-e s/@@NAME@@/$name/",
738 "-e s/@@FILENAME@@/$filename/", 740 "-e s/@@FILENAME@@/$filename/",
739 "-e s/@@CONFDIR@@/$confdir/", 741 "-e s/@@CONFDIR@@/$confdir/",
740 ] 742 ]
741 } 743 }
742 } 744 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | chrome/browser/chromeos/oobe/oobe.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698