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

Side by Side Diff: build/all.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
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 15 matching lines...) Expand all
26 '../skia/skia.gyp:*', 26 '../skia/skia.gyp:*',
27 '../testing/gmock.gyp:*', 27 '../testing/gmock.gyp:*',
28 '../testing/gtest.gyp:*', 28 '../testing/gtest.gyp:*',
29 '../third_party/bzip2/bzip2.gyp:*', 29 '../third_party/bzip2/bzip2.gyp:*',
30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:*', 30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:*',
31 '../third_party/cld/cld.gyp:*', 31 '../third_party/cld/cld.gyp:*',
32 '../third_party/codesighs/codesighs.gyp:*', 32 '../third_party/codesighs/codesighs.gyp:*',
33 '../third_party/ffmpeg/ffmpeg.gyp:*', 33 '../third_party/ffmpeg/ffmpeg.gyp:*',
34 '../third_party/iccjpeg/iccjpeg.gyp:*', 34 '../third_party/iccjpeg/iccjpeg.gyp:*',
35 '../third_party/icu/icu.gyp:*', 35 '../third_party/icu/icu.gyp:*',
36 '../third_party/libjpeg/libjpeg.gyp:*',
37 '../third_party/libpng/libpng.gyp:*', 36 '../third_party/libpng/libpng.gyp:*',
38 '../third_party/libwebp/libwebp.gyp:*', 37 '../third_party/libwebp/libwebp.gyp:*',
39 '../third_party/libxml/libxml.gyp:*', 38 '../third_party/libxml/libxml.gyp:*',
40 '../third_party/libxslt/libxslt.gyp:*', 39 '../third_party/libxslt/libxslt.gyp:*',
41 '../third_party/lzma_sdk/lzma_sdk.gyp:*', 40 '../third_party/lzma_sdk/lzma_sdk.gyp:*',
42 '../third_party/mesa/mesa.gyp:*', 41 '../third_party/mesa/mesa.gyp:*',
43 '../third_party/modp_b64/modp_b64.gyp:*', 42 '../third_party/modp_b64/modp_b64.gyp:*',
44 '../third_party/npapi/npapi.gyp:*', 43 '../third_party/npapi/npapi.gyp:*',
45 '../third_party/ots/ots.gyp:*', 44 '../third_party/ots/ots.gyp:*',
46 '../third_party/qcms/qcms.gyp:*', 45 '../third_party/qcms/qcms.gyp:*',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 ['chromeos==1', { 128 ['chromeos==1', {
130 'dependencies': [ 129 'dependencies': [
131 '../chrome/browser/chromeos/input_method/candidate_window.gyp:*', 130 '../chrome/browser/chromeos/input_method/candidate_window.gyp:*',
132 ], 131 ],
133 }], 132 }],
134 ['remoting==1', { 133 ['remoting==1', {
135 'dependencies': [ 134 'dependencies': [
136 '../remoting/remoting.gyp:*', 135 '../remoting/remoting.gyp:*',
137 ], 136 ],
138 }], 137 }],
138 ['libjpeg_turbo==1', {
139 'dependencies': [
140 '../third_party/libjpeg_turbo/libjpeg.gyp:*',
141 ],
142 }, {
143 'dependencies': [
144 '../third_party/libjpeg/libjpeg.gyp:*',
145 ],
146 }],
139 ['use_openssl!=1', { 147 ['use_openssl!=1', {
140 'dependencies': [ 148 'dependencies': [
141 '../net/third_party/nss/ssl.gyp:*', 149 '../net/third_party/nss/ssl.gyp:*',
142 ], 150 ],
143 }], 151 }],
144 ], 152 ],
145 }, 153 },
146 { 154 {
147 'target_name': 'chromium_builder_tests', 155 'target_name': 'chromium_builder_tests',
148 'type': 'none', 156 'type': 'none',
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 ], # targets 432 ], # targets
425 }], # "chromeos==1" 433 }], # "chromeos==1"
426 ], # conditions 434 ], # conditions
427 } 435 }
428 436
429 # Local Variables: 437 # Local Variables:
430 # tab-width:2 438 # tab-width:2
431 # indent-tabs-mode:nil 439 # indent-tabs-mode:nil
432 # End: 440 # End:
433 # vim: set expandtab tabstop=2 shiftwidth=2: 441 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698