[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 1 | # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | { |
| 6 | 'variables': { |
| 7 | 'chromium_code': 1, |
| 8 | }, |
[email protected] | ef4fa407 | 2009-12-04 22:46:50 | [diff] [blame] | 9 | 'includes': [ |
| 10 | 'base.gypi', |
| 11 | ], |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 12 | 'targets': [ |
| 13 | { |
[email protected] | d34d79f | 2009-10-14 22:06:14 | [diff] [blame] | 14 | 'target_name': 'base_i18n', |
[email protected] | 653bd5f03 | 2009-04-08 12:55:49 | [diff] [blame] | 15 | 'type': '<(library)', |
[email protected] | d34d79f | 2009-10-14 22:06:14 | [diff] [blame] | 16 | 'msvs_guid': '968F3222-9798-4D21-BE08-15ECB5EF2994', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 17 | 'dependencies': [ |
| 18 | 'base', |
[email protected] | d34d79f | 2009-10-14 22:06:14 | [diff] [blame] | 19 | '../third_party/icu/icu.gyp:icui18n', |
| 20 | '../third_party/icu/icu.gyp:icuuc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 21 | ], |
| 22 | 'export_dependent_settings': [ |
| 23 | 'base', |
| 24 | ], |
[email protected] | d34d79f | 2009-10-14 22:06:14 | [diff] [blame] | 25 | 'sources': [ |
| 26 | 'i18n/file_util_icu.cc', |
| 27 | 'i18n/file_util_icu.h', |
| 28 | 'i18n/icu_string_conversions.cc', |
| 29 | 'i18n/icu_string_conversions.h', |
| 30 | 'i18n/icu_util.cc', |
| 31 | 'i18n/icu_util.h', |
| 32 | 'i18n/number_formatting.cc', |
| 33 | 'i18n/number_formatting.h', |
| 34 | 'i18n/time_formatting.cc', |
| 35 | 'i18n/time_formatting.h', |
| 36 | 'i18n/word_iterator.cc', |
| 37 | 'i18n/word_iterator.h', |
| 38 | ], |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 39 | 'conditions': [ |
[email protected] | fb66f9d | 2009-09-07 16:39:46 | [diff] [blame] | 40 | ['OS == "linux" or OS == "freebsd"', { |
[email protected] | 9d38403 | 2009-03-20 23:13:26 | [diff] [blame] | 41 | 'dependencies': [ |
| 42 | '../build/linux/system.gyp:gtk', |
| 43 | ], |
| 44 | }], |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 45 | ], |
| 46 | }, |
| 47 | { |
| 48 | 'target_name': 'base_unittests', |
| 49 | 'type': 'executable', |
[email protected] | 9e450f2 | 2009-03-10 23:12:16 | [diff] [blame] | 50 | 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 51 | 'sources': [ |
[email protected] | c7f475ed | 2009-09-08 17:25:40 | [diff] [blame] | 52 | # Infrastructure files. |
| 53 | 'multiprocess_test.h', |
[email protected] | fb895c6 | 2009-10-09 18:20:30 | [diff] [blame] | 54 | 'test/run_all_unittests.cc', |
| 55 | 'test/test_suite.h', |
[email protected] | c7f475ed | 2009-09-08 17:25:40 | [diff] [blame] | 56 | |
| 57 | # Tests. |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 58 | 'at_exit_unittest.cc', |
| 59 | 'atomicops_unittest.cc', |
[email protected] | 978df34 | 2009-11-24 06:21:53 | [diff] [blame] | 60 | 'base64_unittest.cc', |
[email protected] | 6d1729e | 2009-11-18 23:08:39 | [diff] [blame] | 61 | 'bits_unittest.cc', |
[email protected] | baeb22f5 | 2009-12-03 21:11:34 | [diff] [blame] | 62 | 'cancellation_flag_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 63 | 'command_line_unittest.cc', |
| 64 | 'condition_variable_unittest.cc', |
[email protected] | 28ae8fe | 2009-06-05 18:25:06 | [diff] [blame] | 65 | 'crypto/rsa_private_key_unittest.cc', |
| 66 | 'crypto/signature_creator_unittest.cc', |
[email protected] | 5290aaa | 2009-05-28 06:02:56 | [diff] [blame] | 67 | 'crypto/signature_verifier_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 68 | 'data_pack_unittest.cc', |
[email protected] | 96fd003 | 2009-04-24 00:13:08 | [diff] [blame] | 69 | 'debug_util_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 70 | 'directory_watcher_unittest.cc', |
[email protected] | 2b07b841 | 2009-11-25 15:26:34 | [diff] [blame] | 71 | 'event_trace_consumer_win_unittest.cc', |
| 72 | 'event_trace_controller_win_unittest.cc', |
| 73 | 'event_trace_provider_win_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 74 | 'field_trial_unittest.cc', |
[email protected] | 3f04f2b | 2009-04-30 19:40:03 | [diff] [blame] | 75 | 'file_descriptor_shuffle_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 76 | 'file_path_unittest.cc', |
| 77 | 'file_util_unittest.cc', |
| 78 | 'file_version_info_unittest.cc', |
[email protected] | 5290aaa | 2009-05-28 06:02:56 | [diff] [blame] | 79 | 'gfx/rect_unittest.cc', |
[email protected] | d5bb49f | 2009-05-30 14:39:59 | [diff] [blame] | 80 | 'gmock_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 81 | 'histogram_unittest.cc', |
| 82 | 'hmac_unittest.cc', |
[email protected] | 925d5d60 | 2009-08-19 14:56:38 | [diff] [blame] | 83 | 'id_map_unittest.cc', |
[email protected] | d0767cb54 | 2009-10-08 17:38:30 | [diff] [blame] | 84 | 'i18n/file_util_icu_unittest.cc', |
[email protected] | d6e58c6e | 2009-10-10 20:40:50 | [diff] [blame] | 85 | 'i18n/icu_string_conversions_unittest.cc', |
[email protected] | fb895c6 | 2009-10-09 18:20:30 | [diff] [blame] | 86 | 'i18n/word_iterator_unittest.cc', |
[email protected] | 93d49d7 | 2009-10-23 20:00:20 | [diff] [blame] | 87 | 'json/json_reader_unittest.cc', |
| 88 | 'json/json_writer_unittest.cc', |
| 89 | 'json/string_escape_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 90 | 'lazy_instance_unittest.cc', |
[email protected] | 48ca901 | 2009-08-11 21:38:54 | [diff] [blame] | 91 | 'leak_tracker_unittest.cc', |
| 92 | 'linked_list_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 93 | 'linked_ptr_unittest.cc', |
[email protected] | 8b386ced | 2009-10-27 15:55:52 | [diff] [blame] | 94 | 'mac_util_unittest.mm', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 95 | 'message_loop_unittest.cc', |
[email protected] | b44d5cc | 2009-06-15 10:30:44 | [diff] [blame] | 96 | 'message_pump_glib_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 97 | 'object_watcher_unittest.cc', |
| 98 | 'observer_list_unittest.cc', |
| 99 | 'path_service_unittest.cc', |
| 100 | 'pe_image_unittest.cc', |
| 101 | 'pickle_unittest.cc', |
| 102 | 'pr_time_unittest.cc', |
| 103 | 'process_util_unittest.cc', |
| 104 | 'rand_util_unittest.cc', |
| 105 | 'ref_counted_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 106 | 'scoped_bstr_win_unittest.cc', |
| 107 | 'scoped_comptr_win_unittest.cc', |
| 108 | 'scoped_ptr_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 109 | 'scoped_temp_dir_unittest.cc', |
[email protected] | e00d3919 | 2009-03-19 04:22:28 | [diff] [blame] | 110 | 'scoped_variant_win_unittest.cc', |
[email protected] | c2ad1e3 | 2009-11-04 19:29:58 | [diff] [blame] | 111 | 'sha1_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 112 | 'sha2_unittest.cc', |
| 113 | 'shared_memory_unittest.cc', |
| 114 | 'simple_thread_unittest.cc', |
| 115 | 'singleton_unittest.cc', |
| 116 | 'stack_container_unittest.cc', |
| 117 | 'stats_table_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 118 | 'string_piece_unittest.cc', |
[email protected] | 0477554f | 2010-01-21 19:29:25 | [diff] [blame^] | 119 | 'string_split_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 120 | 'string_tokenizer_unittest.cc', |
| 121 | 'string_util_unittest.cc', |
| 122 | 'sys_info_unittest.cc', |
[email protected] | a2494cb | 2009-11-08 19:04:54 | [diff] [blame] | 123 | 'sys_string_conversions_mac_unittest.mm', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 124 | 'sys_string_conversions_unittest.cc', |
[email protected] | 5b6c1a80 | 2009-07-17 18:14:47 | [diff] [blame] | 125 | 'task_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 126 | 'thread_collision_warner_unittest.cc', |
| 127 | 'thread_local_storage_unittest.cc', |
| 128 | 'thread_local_unittest.cc', |
| 129 | 'thread_unittest.cc', |
| 130 | 'time_unittest.cc', |
| 131 | 'time_win_unittest.cc', |
| 132 | 'timer_unittest.cc', |
[email protected] | 0716cba | 2009-12-17 12:37:58 | [diff] [blame] | 133 | 'tools_sanity_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 134 | 'tracked_objects_unittest.cc', |
| 135 | 'tuple_unittest.cc', |
[email protected] | b9f9383 | 2009-11-13 19:27:48 | [diff] [blame] | 136 | 'utf_offset_string_conversions_unittest.cc', |
[email protected] | ce85f60 | 2009-11-07 01:34:53 | [diff] [blame] | 137 | 'utf_string_conversions_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 138 | 'values_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 139 | 'version_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 140 | 'waitable_event_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 141 | 'waitable_event_watcher_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 142 | 'watchdog_unittest.cc', |
[email protected] | 3125d646 | 2009-09-01 20:50:17 | [diff] [blame] | 143 | 'weak_ptr_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 144 | 'win_util_unittest.cc', |
| 145 | 'wmi_util_unittest.cc', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 146 | 'worker_pool_unittest.cc', |
| 147 | ], |
| 148 | 'include_dirs': [ |
| 149 | # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU |
| 150 | # #include for unicode/uchar.h. This should probably be cleaned up. |
[email protected] | 28062949 | 2009-09-09 06:49:08 | [diff] [blame] | 151 | '../third_party/icu/public/common', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 152 | ], |
| 153 | 'dependencies': [ |
| 154 | 'base', |
[email protected] | d34d79f | 2009-10-14 22:06:14 | [diff] [blame] | 155 | 'base_i18n', |
[email protected] | ce315710 | 2009-05-28 07:23:16 | [diff] [blame] | 156 | '../testing/gmock.gyp:gmock', |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 157 | '../testing/gtest.gyp:gtest', |
| 158 | ], |
| 159 | 'conditions': [ |
[email protected] | fb66f9d | 2009-09-07 16:39:46 | [diff] [blame] | 160 | ['OS == "linux" or OS == "freebsd"', { |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 161 | 'sources!': [ |
| 162 | 'file_version_info_unittest.cc', |
[email protected] | 2d4f7b4 | 2009-04-03 20:21:52 | [diff] [blame] | 163 | 'worker_pool_linux_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 164 | ], |
[email protected] | 3c4e3015 | 2009-11-25 00:17:53 | [diff] [blame] | 165 | 'conditions': [ |
| 166 | [ 'linux_use_tcmalloc==1', { |
| 167 | 'dependencies': [ |
[email protected] | 96a1e3a | 2009-11-26 14:50:13 | [diff] [blame] | 168 | 'allocator/allocator.gyp:allocator', |
[email protected] | 3c4e3015 | 2009-11-25 00:17:53 | [diff] [blame] | 169 | ], |
| 170 | }, |
| 171 | ], |
| 172 | ], |
[email protected] | 9d38403 | 2009-03-20 23:13:26 | [diff] [blame] | 173 | 'dependencies': [ |
| 174 | '../build/linux/system.gyp:gtk', |
[email protected] | db7286d | 2009-04-10 16:36:34 | [diff] [blame] | 175 | '../build/linux/system.gyp:nss', |
[email protected] | a97488f | 2009-09-17 21:37:19 | [diff] [blame] | 176 | '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
[email protected] | 9d38403 | 2009-03-20 23:13:26 | [diff] [blame] | 177 | ], |
[email protected] | fb66f9d | 2009-09-07 16:39:46 | [diff] [blame] | 178 | }, { # OS != "linux" and OS != "freebsd" |
[email protected] | b44d5cc | 2009-06-15 10:30:44 | [diff] [blame] | 179 | 'sources!': [ |
| 180 | 'message_pump_glib_unittest.cc', |
| 181 | ] |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 182 | }], |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 183 | # This is needed to trigger the dll copy step on windows. |
| 184 | # TODO(mark): This should not be necessary. |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 185 | ['OS == "win"', { |
| 186 | 'dependencies': [ |
[email protected] | 28062949 | 2009-09-09 06:49:08 | [diff] [blame] | 187 | '../third_party/icu/icu.gyp:icudata', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 188 | ], |
| 189 | 'sources!': [ |
[email protected] | 3f04f2b | 2009-04-30 19:40:03 | [diff] [blame] | 190 | 'file_descriptor_shuffle_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 191 | ], |
| 192 | }, { # OS != "win" |
| 193 | 'sources!': [ |
[email protected] | 2b07b841 | 2009-11-25 15:26:34 | [diff] [blame] | 194 | 'event_trace_consumer_win_unittest.cc', |
| 195 | 'event_trace_controller_win_unittest.cc', |
| 196 | 'event_trace_provider_win_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 197 | 'object_watcher_unittest.cc', |
| 198 | 'pe_image_unittest.cc', |
| 199 | 'scoped_bstr_win_unittest.cc', |
| 200 | 'scoped_comptr_win_unittest.cc', |
[email protected] | e00d3919 | 2009-03-19 04:22:28 | [diff] [blame] | 201 | 'scoped_variant_win_unittest.cc', |
[email protected] | 8b03e8d | 2009-03-02 06:53:31 | [diff] [blame] | 202 | 'system_monitor_unittest.cc', |
| 203 | 'time_win_unittest.cc', |
| 204 | 'win_util_unittest.cc', |
| 205 | 'wmi_util_unittest.cc', |
| 206 | ], |
| 207 | }], |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 208 | ], |
| 209 | }, |
[email protected] | e8ef09a | 2009-03-16 23:46:45 | [diff] [blame] | 210 | { |
| 211 | 'target_name': 'test_support_base', |
[email protected] | 653bd5f03 | 2009-04-08 12:55:49 | [diff] [blame] | 212 | 'type': '<(library)', |
[email protected] | e8ef09a | 2009-03-16 23:46:45 | [diff] [blame] | 213 | 'dependencies': [ |
| 214 | 'base', |
[email protected] | 7d1ba939 | 2009-08-03 18:35:06 | [diff] [blame] | 215 | ], |
| 216 | 'sources': [ |
[email protected] | fb895c6 | 2009-10-09 18:20:30 | [diff] [blame] | 217 | 'test/test_file_util.h', |
| 218 | 'test/test_file_util_linux.cc', |
| 219 | 'test/test_file_util_mac.cc', |
| 220 | 'test/test_file_util_posix.cc', |
| 221 | 'test/test_file_util_win.cc', |
[email protected] | 7d1ba939 | 2009-08-03 18:35:06 | [diff] [blame] | 222 | ], |
[email protected] | 7d1ba939 | 2009-08-03 18:35:06 | [diff] [blame] | 223 | }, |
| 224 | { |
| 225 | 'target_name': 'test_support_perf', |
| 226 | 'type': '<(library)', |
| 227 | 'dependencies': [ |
| 228 | 'base', |
[email protected] | e8ef09a | 2009-03-16 23:46:45 | [diff] [blame] | 229 | '../testing/gtest.gyp:gtest', |
| 230 | ], |
| 231 | 'sources': [ |
| 232 | 'perftimer.cc', |
[email protected] | fb895c6 | 2009-10-09 18:20:30 | [diff] [blame] | 233 | 'test/run_all_perftests.cc', |
[email protected] | e8ef09a | 2009-03-16 23:46:45 | [diff] [blame] | 234 | ], |
| 235 | 'direct_dependent_settings': { |
| 236 | 'defines': [ |
| 237 | 'PERF_TEST', |
| 238 | ], |
| 239 | }, |
[email protected] | 9d38403 | 2009-03-20 23:13:26 | [diff] [blame] | 240 | 'conditions': [ |
[email protected] | fb66f9d | 2009-09-07 16:39:46 | [diff] [blame] | 241 | ['OS == "linux" or OS == "freebsd"', { |
[email protected] | 9d38403 | 2009-03-20 23:13:26 | [diff] [blame] | 242 | 'dependencies': [ |
| 243 | # Needed to handle the #include chain: |
[email protected] | fb895c6 | 2009-10-09 18:20:30 | [diff] [blame] | 244 | # base/test/perf_test_suite.h |
| 245 | # base/test/test_suite.h |
[email protected] | 9d38403 | 2009-03-20 23:13:26 | [diff] [blame] | 246 | # gtk/gtk.h |
| 247 | '../build/linux/system.gyp:gtk', |
| 248 | ], |
| 249 | }], |
| 250 | ], |
[email protected] | e8ef09a | 2009-03-16 23:46:45 | [diff] [blame] | 251 | }, |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 252 | ], |
| 253 | 'conditions': [ |
| 254 | [ 'OS == "win"', { |
| 255 | 'targets': [ |
| 256 | { |
| 257 | 'target_name': 'debug_message', |
| 258 | 'type': 'executable', |
| 259 | 'sources': [ |
| 260 | 'debug_message.cc', |
| 261 | ], |
[email protected] | 3f8bfc36 | 2009-05-22 02:39:14 | [diff] [blame] | 262 | 'msvs_settings': { |
| 263 | 'VCLinkerTool': { |
| 264 | 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 265 | }, |
| 266 | }, |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 267 | }, |
| 268 | ], |
| 269 | }], |
[email protected] | fb66f9d | 2009-09-07 16:39:46 | [diff] [blame] | 270 | [ 'OS == "linux" or OS == "freebsd"', { |
[email protected] | 24a0e29c | 2009-07-29 23:02:55 | [diff] [blame] | 271 | 'targets': [ |
| 272 | { |
| 273 | 'target_name': 'linux_versioninfo', |
| 274 | 'type': '<(library)', |
| 275 | 'sources': [ |
| 276 | 'file_version_info_linux.cc', |
| 277 | ], |
| 278 | 'include_dirs': [ |
| 279 | '..', |
| 280 | '<(SHARED_INTERMEDIATE_DIR)', |
| 281 | ], |
| 282 | 'actions': [ |
| 283 | { |
| 284 | 'action_name': 'linux_version', |
| 285 | 'variables': { |
| 286 | 'lastchange_path': |
| 287 | '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
| 288 | 'version_py_path': '../chrome/tools/build/version.py', |
| 289 | 'version_path': '../chrome/VERSION', |
| 290 | 'template_input_path': 'file_version_info_linux.h.version', |
| 291 | }, |
| 292 | 'conditions': [ |
| 293 | [ 'branding == "Chrome"', { |
| 294 | 'variables': { |
| 295 | 'branding_path': |
| 296 | '../chrome/app/theme/google_chrome/BRANDING', |
| 297 | }, |
| 298 | }, { # else branding!="Chrome" |
| 299 | 'variables': { |
| 300 | 'branding_path': |
| 301 | '../chrome/app/theme/chromium/BRANDING', |
| 302 | }, |
| 303 | }], |
| 304 | ], |
| 305 | 'inputs': [ |
| 306 | '<(template_input_path)', |
| 307 | '<(version_path)', |
| 308 | '<(branding_path)', |
| 309 | '<(lastchange_path)', |
| 310 | ], |
| 311 | 'outputs': [ |
| 312 | '<(SHARED_INTERMEDIATE_DIR)/base/file_version_info_linux.h', |
| 313 | ], |
| 314 | 'action': [ |
| 315 | 'python', |
| 316 | '<(version_py_path)', |
| 317 | '-f', '<(version_path)', |
| 318 | '-f', '<(branding_path)', |
| 319 | '-f', '<(lastchange_path)', |
| 320 | '<(template_input_path)', |
| 321 | '<@(_outputs)', |
| 322 | ], |
| 323 | 'message': 'Generating version information', |
| 324 | }, |
| 325 | ], |
| 326 | }, |
| 327 | ], |
| 328 | }], |
[email protected] | 2f80c31 | 2009-02-25 21:26:55 | [diff] [blame] | 329 | ], |
| 330 | } |
[email protected] | f5c990c | 2009-10-06 03:02:38 | [diff] [blame] | 331 | |
| 332 | # Local Variables: |
| 333 | # tab-width:2 |
| 334 | # indent-tabs-mode:nil |
| 335 | # End: |
| 336 | # vim: set expandtab tabstop=2 shiftwidth=2: |