| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 # TODO: remove this helper when we have loops in GYP | 7 # TODO: remove this helper when we have loops in GYP |
| 8 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py',], | 8 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py',], |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',], | 10 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',], |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 '../skia/skia.gyp:skia', | 31 '../skia/skia.gyp:skia', |
| 32 '../testing/gmock.gyp:gmock', | 32 '../testing/gmock.gyp:gmock', |
| 33 '../testing/gtest.gyp:gtest', | 33 '../testing/gtest.gyp:gtest', |
| 34 '../third_party/icu/icu.gyp:icui18n', | 34 '../third_party/icu/icu.gyp:icui18n', |
| 35 '../third_party/icu/icu.gyp:icuuc', | 35 '../third_party/icu/icu.gyp:icuuc', |
| 36 '../third_party/libpng/libpng.gyp:libpng', | 36 '../third_party/libpng/libpng.gyp:libpng', |
| 37 '../third_party/zlib/zlib.gyp:zlib', | 37 '../third_party/zlib/zlib.gyp:zlib', |
| 38 '<(libjpeg_gyp_path):libjpeg', | 38 '<(libjpeg_gyp_path):libjpeg', |
| 39 ], | 39 ], |
| 40 'sources': [ | 40 'sources': [ |
| 41 'animation_container_unittest.cc', | |
| 42 'animation_unittest.cc', | |
| 43 'clipboard/clipboard_unittest.cc', | 41 'clipboard/clipboard_unittest.cc', |
| 44 'data_pack_unittest.cc', | 42 'data_pack_unittest.cc', |
| 45 'l10n_util_mac_unittest.mm', | 43 'l10n_util_mac_unittest.mm', |
| 46 'l10n_util_unittest.cc', | 44 'l10n_util_unittest.cc', |
| 47 'multi_animation_unittest.cc', | |
| 48 'os_exchange_data_win_unittest.cc', | 45 'os_exchange_data_win_unittest.cc', |
| 49 'run_all_unittests.cc', | 46 'run_all_unittests.cc', |
| 50 'slide_animation_unittest.cc', | |
| 51 'sql/connection_unittest.cc', | 47 'sql/connection_unittest.cc', |
| 52 'sql/statement_unittest.cc', | 48 'sql/statement_unittest.cc', |
| 53 'sql/transaction_unittest.cc', | 49 'sql/transaction_unittest.cc', |
| 54 'system_monitor_unittest.cc', | 50 'system_monitor_unittest.cc', |
| 55 'test_suite.h', | 51 'test_suite.h', |
| 56 'test/data/resource.h', | 52 'test/data/resource.h', |
| 57 'text_elider_unittest.cc', | 53 'text_elider_unittest.cc', |
| 58 'tree_node_iterator_unittest.cc', | 54 'tree_node_iterator_unittest.cc', |
| 59 'tree_node_model_unittest.cc', | 55 'tree_node_model_unittest.cc', |
| 60 'view_prop_unittest.cc', | 56 'view_prop_unittest.cc', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 }], | 210 }], |
| 215 }], | 211 }], |
| 216 ], | 212 ], |
| 217 } | 213 } |
| 218 | 214 |
| 219 # Local Variables: | 215 # Local Variables: |
| 220 # tab-width:2 | 216 # tab-width:2 |
| 221 # indent-tabs-mode:nil | 217 # indent-tabs-mode:nil |
| 222 # End: | 218 # End: |
| 223 # vim: set expandtab tabstop=2 shiftwidth=2: | 219 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |