| 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',], |
| 11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/app', | 11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/app', |
| 12 'grit_cmd': ['python', '../tools/grit/grit.py'], | 12 'grit_cmd': ['python', '../tools/grit/grit.py'], |
| 13 'localizable_resources': [ | 13 'localizable_resources': [ |
| 14 'resources/app_locale_settings.grd', | 14 'resources/app_locale_settings.grd', |
| 15 'resources/app_strings.grd', | 15 'resources/app_strings.grd', |
| 16 ], | 16 ], |
| 17 }, | 17 }, |
| 18 'includes': [ | 18 'includes': [ |
| 19 'app_base.gypi', | 19 'app_base.gypi', |
| 20 ], | 20 ], |
| 21 'targets': [ | 21 'targets': [ |
| 22 { | 22 { |
| 23 'target_name': 'app_unittests', | 23 'target_name': 'app_unittests', |
| 24 'type': 'executable', | 24 'type': 'executable', |
| 25 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530', | 25 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530', |
| 26 'dependencies': [ | 26 'dependencies': [ |
| 27 'app_base', | 27 'app_base', |
| 28 'app_resources', | 28 'app_resources', |
| 29 '../base/base.gyp:test_support_base', | |
| 30 '../net/net.gyp:net_test_support', | 29 '../net/net.gyp:net_test_support', |
| 31 '../skia/skia.gyp:skia', | 30 '../skia/skia.gyp:skia', |
| 32 '../testing/gmock.gyp:gmock', | 31 '../testing/gmock.gyp:gmock', |
| 33 '../testing/gtest.gyp:gtest', | 32 '../testing/gtest.gyp:gtest', |
| 34 '../third_party/icu/icu.gyp:icui18n', | 33 '../third_party/icu/icu.gyp:icui18n', |
| 35 '../third_party/icu/icu.gyp:icuuc', | 34 '../third_party/icu/icu.gyp:icuuc', |
| 36 '../third_party/libjpeg/libjpeg.gyp:libjpeg', | 35 '../third_party/libjpeg/libjpeg.gyp:libjpeg', |
| 37 '../third_party/libpng/libpng.gyp:libpng', | 36 '../third_party/libpng/libpng.gyp:libpng', |
| 38 '../third_party/zlib/zlib.gyp:zlib', | 37 '../third_party/zlib/zlib.gyp:zlib', |
| 39 ], | 38 ], |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 }], | 206 }], |
| 208 }], | 207 }], |
| 209 ], | 208 ], |
| 210 } | 209 } |
| 211 | 210 |
| 212 # Local Variables: | 211 # Local Variables: |
| 213 # tab-width:2 | 212 # tab-width:2 |
| 214 # indent-tabs-mode:nil | 213 # indent-tabs-mode:nil |
| 215 # End: | 214 # End: |
| 216 # vim: set expandtab tabstop=2 shiftwidth=2: | 215 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |