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

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

Issue 1406153015: Remove dependencies on Android's forked decoder libraries (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: It is 2015 Created 5 years, 1 month 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 | « gyp/libjpeg.gyp ('k') | gyp/libpng.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 Google Inc.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 # This arguably should go in libjpeg-turbo.gyp. But if we put it there, gyp
7 # gets overeager and starts trying to parse all of the targets in that file.
8 # And it will fail to parse a target it doesn't need anyway when we are
9 # building for the android framework. So we will add this file as another
10 # layer of indirection.
11 {
12 'targets': [
13 {
14 'target_name': 'libjpeg-turbo-selector',
15 'type': 'none',
16 'conditions': [
17 [ 'skia_android_framework', {
18 'dependencies': [ 'android_deps.gyp:libjpeg-turbo' ],
19 'export_dependent_settings': [ 'android_deps.gyp:libjpeg-turbo' ],
20 },{
21 'dependencies': [ 'libjpeg-turbo.gyp:libjpeg-turbo' ],
22 'export_dependent_settings': [ 'libjpeg-turbo.gyp:libjpeg-turbo' ],
23 }]
24 ]
25 },
26 ]
27 }
OLDNEW
« no previous file with comments | « gyp/libjpeg.gyp ('k') | gyp/libpng.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698