| 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 # 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', '../chrome/tools/build/apply_locales.py',], | 8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',], |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 }, | 10 }, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 }, | 37 }, |
| 38 'targets': [ | 38 'targets': [ |
| 39 { | 39 { |
| 40 'target_name': 'app_base', | 40 'target_name': 'app_base', |
| 41 'type': '<(library)', | 41 'type': '<(library)', |
| 42 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', | 42 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', |
| 43 'dependencies': [ | 43 'dependencies': [ |
| 44 'app_resources', | 44 'app_resources', |
| 45 'app_strings', | 45 'app_strings', |
| 46 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
| 47 '../base/base.gyp:base_gfx', | 47 '../base/base.gyp:base_i18n', |
| 48 '../net/net.gyp:net', | 48 '../net/net.gyp:net', |
| 49 '../skia/skia.gyp:skia', | 49 '../skia/skia.gyp:skia', |
| 50 '../third_party/icu/icu.gyp:icui18n', | 50 '../third_party/icu/icu.gyp:icui18n', |
| 51 '../third_party/icu/icu.gyp:icuuc', | 51 '../third_party/icu/icu.gyp:icuuc', |
| 52 '../third_party/libjpeg/libjpeg.gyp:libjpeg', | 52 '../third_party/libjpeg/libjpeg.gyp:libjpeg', |
| 53 '../third_party/libpng/libpng.gyp:libpng', | 53 '../third_party/libpng/libpng.gyp:libpng', |
| 54 '../third_party/sqlite/sqlite.gyp:sqlite', | 54 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 55 '../third_party/zlib/zlib.gyp:zlib', | 55 '../third_party/zlib/zlib.gyp:zlib', |
| 56 ], | 56 ], |
| 57 'include_dirs': [ | 57 'include_dirs': [ |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 ], | 414 ], |
| 415 }, | 415 }, |
| 416 ], | 416 ], |
| 417 } | 417 } |
| 418 | 418 |
| 419 # Local Variables: | 419 # Local Variables: |
| 420 # tab-width:2 | 420 # tab-width:2 |
| 421 # indent-tabs-mode:nil | 421 # indent-tabs-mode:nil |
| 422 # End: | 422 # End: |
| 423 # vim: set expandtab tabstop=2 shiftwidth=2: | 423 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |