OLD | NEW |
| (Empty) |
1 # Copyright 2009 Google Inc. | |
2 # | |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | |
4 # you may not use this file except in compliance with the License. | |
5 # You may obtain a copy of the License at | |
6 # | |
7 # http://www.apache.org/licenses/LICENSE-2.0 | |
8 # | |
9 # Unless required by applicable law or agreed to in writing, software | |
10 # distributed under the License is distributed on an "AS IS" BASIS, | |
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 # See the License for the specific language governing permissions and | |
13 # limitations under the License. | |
14 # ======================================================================== | |
15 | |
16 Import('env') | |
17 | |
18 env.BuildSConscript('logging') | |
19 env.BuildSConscript('security') | |
20 | |
21 local_env = env.Clone() | |
22 | |
23 inputs = [ | |
24 'accounts.cc', | |
25 'app_util.cc', | |
26 'atl_regexp.cc', | |
27 'browser_utils.cc', | |
28 'cgi.cc', | |
29 'clipboard.cc', | |
30 'command_line_parser.cc', | |
31 'command_line_validator.cc', | |
32 'commands.cc', | |
33 'crash_if_specific_error.cc', | |
34 'crc.cc', | |
35 'debug.cc', | |
36 'disk.cc', | |
37 'dynamic_link_dbghelp.cc', | |
38 'dynamic_link_kernel32.cc', | |
39 'encrypt.cc', | |
40 'error.cc', | |
41 'event_trace_controller.cc', | |
42 'event_trace_provider.cc', | |
43 'etw_log_writer.cc', | |
44 'exception_barrier.cc', | |
45 'exception_barrier_lowlevel.asm', | |
46 'exception_utils.cc', | |
47 'extractor.cc', | |
48 'file.cc', | |
49 'file_reader.cc', | |
50 'file_store.cc', | |
51 'file_ver.cc', | |
52 'firewall_product_detection.cc', | |
53 'highres_timer-win32.cc', | |
54 'localization.cc', | |
55 'logging.cc', | |
56 'md5.cc', | |
57 'module_utils.cc', | |
58 'omaha_version.cc', | |
59 'path.cc', | |
60 'pe_utils.cc', | |
61 'popup_menu.cc', | |
62 'process.cc', | |
63 'proc_utils.cc', | |
64 'program_instance.cc', | |
65 'queue_timer.cc', | |
66 'reactor.cc', | |
67 'reg_key.cc', | |
68 'regexp.cc', | |
69 'registry_hive.cc', | |
70 'registry_monitor_manager.cc', | |
71 'registry_store.cc', | |
72 'safe_format.cc', | |
73 'serializable_object.cc', | |
74 'service_utils.cc', | |
75 'shell.cc', | |
76 'shutdown_handler.cc', | |
77 'signatures.cc', | |
78 'signaturevalidator.cc', | |
79 'single_instance.cc', | |
80 'sta.cc', | |
81 'string.cc', | |
82 'synchronized.cc', | |
83 'system.cc', | |
84 'system_info.cc', | |
85 '../third_party/smartany/shared_any.cc', | |
86 'thread.cc', | |
87 'thread_pool.cc', | |
88 'time.cc', | |
89 'timer.cc', | |
90 'tr_rand.cc', | |
91 'user_info.cc', | |
92 'user_rights.cc', | |
93 'utils.cc', | |
94 'vista_utils.cc', | |
95 'vistautil.cc', | |
96 'window_utils.cc', | |
97 'wmi_query.cc', | |
98 'xml_utils.cc', | |
99 ] | |
100 | |
101 # Required by the exception barrier code. | |
102 local_env.Append(ASFLAGS = ['/safeseh']) | |
103 | |
104 # Build these into a library. | |
105 local_env.ComponentStaticLibrary('base', inputs) | |
OLD | NEW |