| 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 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 'target_name': 'app_base', | 41 'target_name': 'app_base', |
| 42 'type': '<(library)', | 42 'type': '<(library)', |
| 43 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', | 43 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', |
| 44 'dependencies': [ | 44 'dependencies': [ |
| 45 'app_resources', | 45 'app_resources', |
| 46 'app_strings', | 46 'app_strings', |
| 47 '../base/base.gyp:base', | 47 '../base/base.gyp:base', |
| 48 '../base/base.gyp:base_gfx', | 48 '../base/base.gyp:base_gfx', |
| 49 '../net/net.gyp:net', | 49 '../net/net.gyp:net', |
| 50 '../skia/skia.gyp:skia', | 50 '../skia/skia.gyp:skia', |
| 51 '../third_party/icu38/icu38.gyp:icui18n', | 51 '../third_party/icu/icu.gyp:icui18n', |
| 52 '../third_party/icu38/icu38.gyp:icuuc', | 52 '../third_party/icu/icu.gyp:icuuc', |
| 53 ], | 53 ], |
| 54 'include_dirs': [ | 54 'include_dirs': [ |
| 55 '..', | 55 '..', |
| 56 '../chrome/third_party/wtl/include', | 56 '../chrome/third_party/wtl/include', |
| 57 ], | 57 ], |
| 58 'sources': [ | 58 'sources': [ |
| 59 # All .cc, .h, and .mm files under app/ except for tests. | 59 # All .cc, .h, and .mm files under app/ except for tests. |
| 60 'animation.cc', | 60 'animation.cc', |
| 61 'animation.h', | 61 'animation.h', |
| 62 'app_paths.h', | 62 'app_paths.h', |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 { | 178 { |
| 179 'target_name': 'app_unittests', | 179 'target_name': 'app_unittests', |
| 180 'type': 'executable', | 180 'type': 'executable', |
| 181 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530', | 181 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530', |
| 182 'dependencies': [ | 182 'dependencies': [ |
| 183 'app_base', | 183 'app_base', |
| 184 'app_resources', | 184 'app_resources', |
| 185 '../net/net.gyp:net_test_support', | 185 '../net/net.gyp:net_test_support', |
| 186 '../skia/skia.gyp:skia', | 186 '../skia/skia.gyp:skia', |
| 187 '../testing/gtest.gyp:gtest', | 187 '../testing/gtest.gyp:gtest', |
| 188 '../third_party/icu38/icu38.gyp:icui18n', | 188 '../third_party/icu/icu.gyp:icui18n', |
| 189 '../third_party/icu38/icu38.gyp:icuuc', | 189 '../third_party/icu/icu.gyp:icuuc', |
| 190 '../third_party/libxml/libxml.gyp:libxml', | 190 '../third_party/libxml/libxml.gyp:libxml', |
| 191 ], | 191 ], |
| 192 'sources': [ | 192 'sources': [ |
| 193 'animation_unittest.cc', | 193 'animation_unittest.cc', |
| 194 'gfx/font_unittest.cc', | 194 'gfx/font_unittest.cc', |
| 195 'gfx/icon_util_unittest.cc', | 195 'gfx/icon_util_unittest.cc', |
| 196 'gfx/text_elider_unittest.cc', | 196 'gfx/text_elider_unittest.cc', |
| 197 'l10n_util_mac_unittest.mm', | 197 'l10n_util_mac_unittest.mm', |
| 198 'l10n_util_unittest.cc', | 198 'l10n_util_unittest.cc', |
| 199 'os_exchange_data_win_unittest.cc', | 199 'os_exchange_data_win_unittest.cc', |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 'process_outputs_as_sources': 1, | 341 'process_outputs_as_sources': 1, |
| 342 'message': 'Generating appid information in <(SHARED_INTERMEDIAT
E_DIR)/chrome/appid.h' | 342 'message': 'Generating appid information in <(SHARED_INTERMEDIAT
E_DIR)/chrome/appid.h' |
| 343 }, | 343 }, |
| 344 ], | 344 ], |
| 345 }, | 345 }, |
| 346 ], | 346 ], |
| 347 ], | 347 ], |
| 348 }, | 348 }, |
| 349 ], | 349 ], |
| 350 } | 350 } |
| OLD | NEW |