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 15 matching lines...) Expand all Loading... | |
26 'dependencies': [ | 26 'dependencies': [ |
27 'app_base', | 27 'app_base', |
28 'app_resources', | 28 'app_resources', |
29 '../base/base.gyp:test_support_base', | 29 '../base/base.gyp:test_support_base', |
30 '../net/net.gyp:net_test_support', | 30 '../net/net.gyp:net_test_support', |
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/libjpeg/libjpeg.gyp:libjpeg', | 36 '<(libjpeg_gyp_path):libjpeg', |
Mark Mentovai
2010/12/03 16:18:09
I’d just move these to the bottoms of their respec
Hironori Bono
2010/12/07 07:28:28
Done, (including the other GYP files).
| |
37 '../third_party/libpng/libpng.gyp:libpng', | 37 '../third_party/libpng/libpng.gyp:libpng', |
38 '../third_party/zlib/zlib.gyp:zlib', | 38 '../third_party/zlib/zlib.gyp:zlib', |
39 ], | 39 ], |
40 'sources': [ | 40 'sources': [ |
41 'animation_container_unittest.cc', | 41 'animation_container_unittest.cc', |
42 'animation_unittest.cc', | 42 'animation_unittest.cc', |
43 'clipboard/clipboard_unittest.cc', | 43 'clipboard/clipboard_unittest.cc', |
44 'l10n_util_mac_unittest.mm', | 44 'l10n_util_mac_unittest.mm', |
45 'l10n_util_unittest.cc', | 45 'l10n_util_unittest.cc', |
46 'multi_animation_unittest.cc', | 46 'multi_animation_unittest.cc', |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
213 }], | 213 }], |
214 }], | 214 }], |
215 ], | 215 ], |
216 } | 216 } |
217 | 217 |
218 # Local Variables: | 218 # Local Variables: |
219 # tab-width:2 | 219 # tab-width:2 |
220 # indent-tabs-mode:nil | 220 # indent-tabs-mode:nil |
221 # End: | 221 # End: |
222 # vim: set expandtab tabstop=2 shiftwidth=2: | 222 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |