Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(715)

Side by Side Diff: app/app.gyp

Issue 5292007: Integrates libjpeg-turbo into Chromium (Chromium side)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | app/app_base.gypi » ('j') | build/common.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
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 ],
40 'sources': [ 39 'sources': [
41 'animation_container_unittest.cc', 40 'animation_container_unittest.cc',
42 'animation_unittest.cc', 41 'animation_unittest.cc',
43 'clipboard/clipboard_unittest.cc', 42 'clipboard/clipboard_unittest.cc',
44 'l10n_util_mac_unittest.mm', 43 'l10n_util_mac_unittest.mm',
45 'l10n_util_unittest.cc', 44 'l10n_util_unittest.cc',
46 'multi_animation_unittest.cc', 45 'multi_animation_unittest.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 }], 81 }],
83 ['OS =="linux" or OS =="freebsd"', { 82 ['OS =="linux" or OS =="freebsd"', {
84 'conditions': [ 83 'conditions': [
85 ['linux_use_tcmalloc==1', { 84 ['linux_use_tcmalloc==1', {
86 'dependencies': [ 85 'dependencies': [
87 '../base/allocator/allocator.gyp:allocator', 86 '../base/allocator/allocator.gyp:allocator',
88 ], 87 ],
89 }], 88 }],
90 ], 89 ],
91 }], 90 }],
91 ['libjpeg_turbo==1', {
Mark Mentovai 2010/11/29 19:14:17 I wonder if we could make this more abstract inste
Hironori Bono 2010/11/30 09:28:09 Done. Thank you for noticing it. It makes this cha
92 'dependencies': [
93 '../third_party/libjpeg_turbo/libjpeg.gyp:libjpeg',
94 ],
95 }, {
96 'dependencies': [
97 '../third_party/libjpeg/libjpeg.gyp:libjpeg',
98 ],
99 }],
92 ], 100 ],
93 }, 101 },
94 { 102 {
95 'target_name': 'app_strings', 103 'target_name': 'app_strings',
96 'msvs_guid': 'AE9BF4A2-19C5-49D8-BB1A-F28496DD7051', 104 'msvs_guid': 'AE9BF4A2-19C5-49D8-BB1A-F28496DD7051',
97 'type': 'none', 105 'type': 'none',
98 'rules': [ 106 'rules': [
99 { 107 {
100 'rule_name': 'grit', 108 'rule_name': 'grit',
101 'extension': 'grd', 109 'extension': 'grd',
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 }], 221 }],
214 }], 222 }],
215 ], 223 ],
216 } 224 }
217 225
218 # Local Variables: 226 # Local Variables:
219 # tab-width:2 227 # tab-width:2
220 # indent-tabs-mode:nil 228 # indent-tabs-mode:nil
221 # End: 229 # End:
222 # vim: set expandtab tabstop=2 shiftwidth=2: 230 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | app/app_base.gypi » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698