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 19 matching lines...) Expand all Loading... |
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/public/common/content_switches.cc", | 36 "//content/public/common/content_switches.cc", |
37 "app/chrome_crash_reporter_client.cc", | 37 "app/chrome_crash_reporter_client.cc", |
38 "app/chrome_crash_reporter_client.h", | 38 "app/chrome_crash_reporter_client.h", |
39 "app/chrome_exe.rc", | 39 "app/chrome_exe.rc", |
| 40 "app/chrome_exe_load_config_win.cc", |
40 "app/chrome_exe_main_win.cc", | 41 "app/chrome_exe_main_win.cc", |
41 "app/chrome_watcher_client_win.cc", | 42 "app/chrome_watcher_client_win.cc", |
42 "app/chrome_watcher_client_win.h", | 43 "app/chrome_watcher_client_win.h", |
43 "app/chrome_watcher_command_line_win.cc", | 44 "app/chrome_watcher_command_line_win.cc", |
44 "app/chrome_watcher_command_line_win.h", | 45 "app/chrome_watcher_command_line_win.h", |
45 "app/client_util.cc", | 46 "app/client_util.cc", |
46 "app/client_util.h", | 47 "app/client_util.h", |
47 "app/kasko_client.cc", | 48 "app/kasko_client.cc", |
48 "app/kasko_client.h", | 49 "app/kasko_client.h", |
49 "app/signature_validator_win.cc", | 50 "app/signature_validator_win.cc", |
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 | 781 |
781 args = [ | 782 args = [ |
782 rebase_path(infile, root_build_dir), | 783 rebase_path(infile, root_build_dir), |
783 rebase_path(outfile, root_build_dir), | 784 rebase_path(outfile, root_build_dir), |
784 "-e s/@@NAME@@/$name/", | 785 "-e s/@@NAME@@/$name/", |
785 "-e s/@@FILENAME@@/$filename/", | 786 "-e s/@@FILENAME@@/$filename/", |
786 "-e s/@@CONFDIR@@/$confdir/", | 787 "-e s/@@CONFDIR@@/$confdir/", |
787 ] | 788 ] |
788 } | 789 } |
789 } | 790 } |
OLD | NEW |