diff options
author | scottmg <scottmg@chromium.org> | 2015-02-27 18:23:09 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-28 02:24:07 +0000 |
commit | 7c7296f4dcb7e32fa4440b333a40a37699f517b1 (patch) | |
tree | 279df2952a81b93354570bb78e92c3c4c5a24fa9 /chrome/BUILD.gn | |
parent | e4f56cef9af4457ba0074e963748284d5da35165 (diff) | |
download | chromium_src-7c7296f4dcb7e32fa4440b333a40a37699f517b1.zip chromium_src-7c7296f4dcb7e32fa4440b333a40a37699f517b1.tar.gz chromium_src-7c7296f4dcb7e32fa4440b333a40a37699f517b1.tar.bz2 |
Apply gn format with 'sources' sorting to src/
Application of https://codereview.chromium.org/962003002/.
TBR=keybuk@chromium.org
R=brettw@chromium.org
BUG=456014
Review URL: https://codereview.chromium.org/960413003
Cr-Commit-Position: refs/heads/master@{#318574}
Diffstat (limited to 'chrome/BUILD.gn')
-rw-r--r-- | chrome/BUILD.gn | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn index 5b40f4f..8b0e6a3 100644 --- a/chrome/BUILD.gn +++ b/chrome/BUILD.gn @@ -41,6 +41,8 @@ if (!is_android && (!is_win || link_chrome_on_windows)) { if (is_win) { sources += [ "$target_gen_dir/chrome_exe_version.rc", + "//content/app/startup_helper_win.cc", + "//content/public/common/content_switches.cc", "app/chrome_crash_reporter_client.cc", "app/chrome_crash_reporter_client.h", "app/chrome_exe.rc", @@ -55,8 +57,6 @@ if (!is_android && (!is_win || link_chrome_on_windows)) { "app/signature_validator_win.h", "common/crash_keys.cc", "common/crash_keys.h'", - "//content/app/startup_helper_win.cc", - "//content/public/common/content_switches.cc", ] deps += [ ":chrome_version_resources", @@ -408,12 +408,12 @@ if (is_chrome_branded) { copy("default_apps") { visibility = [ ":packed_resources" ] sources = [ + "browser/resources/default_apps/docs.crx", + "browser/resources/default_apps/drive.crx", "browser/resources/default_apps/external_extensions.json", "browser/resources/default_apps/gmail.crx", "browser/resources/default_apps/search.crx", "browser/resources/default_apps/youtube.crx", - "browser/resources/default_apps/drive.crx", - "browser/resources/default_apps/docs.crx", ] outputs = [ "$root_out_dir/default_apps/{{source_file_part}}", @@ -473,12 +473,12 @@ repack("packed_extra_resources") { if (!is_ios && !is_android) { # New paks should be added here by default. sources += [ + "$root_gen_dir/blink/devtools_resources.pak", "$root_gen_dir/chrome/component_extension_resources.pak", "$root_gen_dir/chrome/options_resources.pak", "$root_gen_dir/chrome/quota_internals_resources.pak", "$root_gen_dir/chrome/sync_file_system_internals_resources.pak", "$root_gen_dir/chrome/webrtc_device_provider_resources.pak", - "$root_gen_dir/blink/devtools_resources.pak", ] deps += [ "//chrome/browser/devtools:webrtc_device_provider_resources", @@ -578,10 +578,10 @@ template("chrome_repack_percent") { # All sources should also have deps for completeness. sources = [ - "$root_gen_dir/components/components_resources_${percent}_percent.pak", - "$root_gen_dir/ui/resources/ui_resources_${percent}_percent.pak", "$root_gen_dir/chrome/renderer_resources_${percent}_percent.pak", "$root_gen_dir/chrome/theme_resources_${percent}_percent.pak", + "$root_gen_dir/components/components_resources_${percent}_percent.pak", + "$root_gen_dir/ui/resources/ui_resources_${percent}_percent.pak", ] deps = [ |