OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'bits_unittest.cc', | 54 'bits_unittest.cc', |
55 'callback_unittest.cc', | 55 'callback_unittest.cc', |
56 'cancellation_flag_unittest.cc', | 56 'cancellation_flag_unittest.cc', |
57 'command_line_unittest.cc', | 57 'command_line_unittest.cc', |
58 'condition_variable_unittest.cc', | 58 'condition_variable_unittest.cc', |
59 'crypto/rsa_private_key_unittest.cc', | 59 'crypto/rsa_private_key_unittest.cc', |
60 'crypto/signature_creator_unittest.cc', | 60 'crypto/signature_creator_unittest.cc', |
61 'crypto/signature_verifier_unittest.cc', | 61 'crypto/signature_verifier_unittest.cc', |
62 'data_pack_unittest.cc', | 62 'data_pack_unittest.cc', |
63 'debug_util_unittest.cc', | 63 'debug_util_unittest.cc', |
64 'file_watcher_unittest.cc', | 64 'dir_reader_posix_unittest.cc', |
65 'event_trace_consumer_win_unittest.cc', | 65 'event_trace_consumer_win_unittest.cc', |
66 'event_trace_controller_win_unittest.cc', | 66 'event_trace_controller_win_unittest.cc', |
67 'event_trace_provider_win_unittest.cc', | 67 'event_trace_provider_win_unittest.cc', |
68 'field_trial_unittest.cc', | 68 'field_trial_unittest.cc', |
69 'file_descriptor_shuffle_unittest.cc', | 69 'file_descriptor_shuffle_unittest.cc', |
70 'file_path_unittest.cc', | 70 'file_path_unittest.cc', |
71 'file_util_unittest.cc', | 71 'file_util_unittest.cc', |
72 'file_version_info_unittest.cc', | 72 'file_version_info_unittest.cc', |
| 73 'file_watcher_unittest.cc', |
73 'gfx/rect_unittest.cc', | 74 'gfx/rect_unittest.cc', |
74 'gmock_unittest.cc', | 75 'gmock_unittest.cc', |
75 'histogram_unittest.cc', | 76 'histogram_unittest.cc', |
76 'hmac_unittest.cc', | 77 'hmac_unittest.cc', |
77 'id_map_unittest.cc', | 78 'id_map_unittest.cc', |
78 'i18n/file_util_icu_unittest.cc', | 79 'i18n/file_util_icu_unittest.cc', |
79 'i18n/icu_string_conversions_unittest.cc', | 80 'i18n/icu_string_conversions_unittest.cc', |
80 'i18n/word_iterator_unittest.cc', | 81 'i18n/word_iterator_unittest.cc', |
81 'json/json_reader_unittest.cc', | 82 'json/json_reader_unittest.cc', |
82 'json/json_writer_unittest.cc', | 83 'json/json_writer_unittest.cc', |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 'message_pump_glib_unittest.cc', | 174 'message_pump_glib_unittest.cc', |
174 ] | 175 ] |
175 }], | 176 }], |
176 # This is needed to trigger the dll copy step on windows. | 177 # This is needed to trigger the dll copy step on windows. |
177 # TODO(mark): This should not be necessary. | 178 # TODO(mark): This should not be necessary. |
178 ['OS == "win"', { | 179 ['OS == "win"', { |
179 'dependencies': [ | 180 'dependencies': [ |
180 '../third_party/icu/icu.gyp:icudata', | 181 '../third_party/icu/icu.gyp:icudata', |
181 ], | 182 ], |
182 'sources!': [ | 183 'sources!': [ |
| 184 'dir_reader_posix_unittest.cc', |
183 'file_descriptor_shuffle_unittest.cc', | 185 'file_descriptor_shuffle_unittest.cc', |
184 ], | 186 ], |
185 }, { # OS != "win" | 187 }, { # OS != "win" |
186 'sources!': [ | 188 'sources!': [ |
187 'event_trace_consumer_win_unittest.cc', | 189 'event_trace_consumer_win_unittest.cc', |
188 'event_trace_controller_win_unittest.cc', | 190 'event_trace_controller_win_unittest.cc', |
189 'event_trace_provider_win_unittest.cc', | 191 'event_trace_provider_win_unittest.cc', |
190 'object_watcher_unittest.cc', | 192 'object_watcher_unittest.cc', |
191 'pe_image_unittest.cc', | 193 'pe_image_unittest.cc', |
192 'scoped_bstr_win_unittest.cc', | 194 'scoped_bstr_win_unittest.cc', |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 ], | 322 ], |
321 }], | 323 }], |
322 ], | 324 ], |
323 } | 325 } |
324 | 326 |
325 # Local Variables: | 327 # Local Variables: |
326 # tab-width:2 | 328 # tab-width:2 |
327 # indent-tabs-mode:nil | 329 # indent-tabs-mode:nil |
328 # End: | 330 # End: |
329 # vim: set expandtab tabstop=2 shiftwidth=2: | 331 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |