| OLD | NEW |
| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/chrome_repack_locales.gni") | 9 import("//chrome/chrome_repack_locales.gni") |
| 10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 defines = [] | 26 defines = [] |
| 27 deps = [] | 27 deps = [] |
| 28 data_deps = [] | 28 data_deps = [] |
| 29 | 29 |
| 30 # TODO(GYP) mac_bundle_resources, xcode_settings | 30 # TODO(GYP) mac_bundle_resources, xcode_settings |
| 31 | 31 |
| 32 # TODO(GYP) order_profiling, order_text_section | 32 # TODO(GYP) order_profiling, order_text_section |
| 33 | 33 |
| 34 if (is_win) { | 34 if (is_win) { |
| 35 sources += [ | 35 sources += [ |
| 36 "//content/app/startup_helper_win.cc", | |
| 37 "//content/public/common/content_switches.cc", | 36 "//content/public/common/content_switches.cc", |
| 38 "app/chrome_crash_reporter_client.cc", | 37 "app/chrome_crash_reporter_client.cc", |
| 39 "app/chrome_crash_reporter_client.h", | 38 "app/chrome_crash_reporter_client.h", |
| 40 "app/chrome_exe.rc", | 39 "app/chrome_exe.rc", |
| 41 "app/chrome_exe_main_win.cc", | 40 "app/chrome_exe_main_win.cc", |
| 42 "app/chrome_watcher_client_win.cc", | 41 "app/chrome_watcher_client_win.cc", |
| 43 "app/chrome_watcher_client_win.h", | 42 "app/chrome_watcher_client_win.h", |
| 44 "app/chrome_watcher_command_line_win.cc", | 43 "app/chrome_watcher_command_line_win.cc", |
| 45 "app/chrome_watcher_command_line_win.h", | 44 "app/chrome_watcher_command_line_win.h", |
| 46 "app/client_util.cc", | 45 "app/client_util.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 70 "//base", | 69 "//base", |
| 71 "//breakpad:breakpad_handler", | 70 "//breakpad:breakpad_handler", |
| 72 "//breakpad:breakpad_sender", | 71 "//breakpad:breakpad_sender", |
| 73 "//chrome/browser:chrome_process_finder", | 72 "//chrome/browser:chrome_process_finder", |
| 74 "//chrome/chrome_watcher", | 73 "//chrome/chrome_watcher", |
| 75 "//chrome/chrome_watcher:client", | 74 "//chrome/chrome_watcher:client", |
| 76 "//chrome/installer/util", | 75 "//chrome/installer/util", |
| 77 "//chrome_elf", | 76 "//chrome_elf", |
| 78 "//components/browser_watcher:browser_watcher_client", | 77 "//components/browser_watcher:browser_watcher_client", |
| 79 "//components/crash/app", | 78 "//components/crash/app", |
| 79 "//content:startup_helper_win", |
| 80 "//crypto", | 80 "//crypto", |
| 81 "//sandbox", | 81 "//sandbox", |
| 82 "//ui/gfx", | 82 "//ui/gfx", |
| 83 ] | 83 ] |
| 84 libs = [ | 84 libs = [ |
| 85 "wintrust.lib", | 85 "wintrust.lib", |
| 86 "crypt32.lib", | 86 "crypt32.lib", |
| 87 ] | 87 ] |
| 88 configs -= [ "//build/config/win:console" ] | 88 configs -= [ "//build/config/win:console" ] |
| 89 configs += [ "//build/config/win:windowed" ] | 89 configs += [ "//build/config/win:windowed" ] |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 | 780 |
| 781 args = [ | 781 args = [ |
| 782 rebase_path(infile, root_build_dir), | 782 rebase_path(infile, root_build_dir), |
| 783 rebase_path(outfile, root_build_dir), | 783 rebase_path(outfile, root_build_dir), |
| 784 "-e s/@@NAME@@/$name/", | 784 "-e s/@@NAME@@/$name/", |
| 785 "-e s/@@FILENAME@@/$filename/", | 785 "-e s/@@FILENAME@@/$filename/", |
| 786 "-e s/@@CONFDIR@@/$confdir/", | 786 "-e s/@@CONFDIR@@/$confdir/", |
| 787 ] | 787 ] |
| 788 } | 788 } |
| 789 } | 789 } |
| OLD | NEW |