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

Side by Side Diff: gyp/libjpeg-turbo.gyp

Issue 2182873005: Make the yasm copy target be type 'none' rather than type 'executable' (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'xcode_settings': { 6 'xcode_settings': {
7 'SYMROOT': '<(DEPTH)/xcodebuild', 7 'SYMROOT': '<(DEPTH)/xcodebuild',
8 }, 8 },
9 'variables': { 9 'variables': {
10 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/externals/li bjpeg-turbo', 10 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/externals/li bjpeg-turbo',
11 'conditions': [ 11 'conditions': [
12 [ 'skia_os == "win"', { 12 [ 'skia_os == "win"', {
13 'object_suffix': 'obj', 13 'object_suffix': 'obj',
14 }, { 14 }, {
15 'object_suffix': 'o', 15 'object_suffix': 'o',
16 }], 16 }],
17 ], 17 ],
18 }, 18 },
19 'targets': [ 19 'targets': [
20 { 20 {
21 'target_name': 'yasm-win', 21 'target_name': 'yasm-win',
22 'type': 'executable', 22 'type': 'none',
23 'sources': [ 23 'sources': [
24 '../third_party/externals/yasm/binaries/win/yasm.exe', 24 '../third_party/externals/yasm/binaries/win/yasm.exe',
25 ], 25 ],
26 'copies' : [{ 26 'copies' : [{
27 'destination': '<(PRODUCT_DIR)', 27 'destination': '<(PRODUCT_DIR)',
28 'files': [ '../third_party/externals/yasm/binaries/win/yasm.exe' ], 28 'files': [ '../third_party/externals/yasm/binaries/win/yasm.exe' ],
29 }], 29 }],
30 }, 30 },
31 { 31 {
32 'target_name': 'yasm-android', 32 'target_name': 'yasm-android',
33 'type': 'executable', 33 'type': 'none',
34 'sources': [ 34 'sources': [
35 '../third_party/yasm/android/yasm-android', 35 '../third_party/yasm/android/yasm-android',
36 ], 36 ],
37 'copies' : [{ 37 'copies' : [{
38 'destination': '<(PRODUCT_DIR)', 38 'destination': '<(PRODUCT_DIR)',
39 'files': [ '../third_party/yasm/android/yasm-android' ], 39 'files': [ '../third_party/yasm/android/yasm-android' ],
40 }], 40 }],
41 }, 41 },
42 { 42 {
43 'target_name': 'libjpeg-turbo', 43 'target_name': 'libjpeg-turbo',
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 ], 355 ],
356 'process_outputs_as_sources': 1, 356 'process_outputs_as_sources': 1,
357 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)', 357 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)',
358 }], 358 }],
359 ] 359 ]
360 }, 360 },
361 ], 361 ],
362 }, 362 },
363 ], 363 ],
364 } 364 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698