OLD | NEW |
1 # Copyright 2016 Google Inc. All Rights Reserved. | 1 # Copyright 2016 Google Inc. All Rights Reserved. |
2 # | 2 # |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
6 # | 6 # |
7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
8 # | 8 # |
9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 # See the License for the specific language governing permissions and | 12 # See the License for the specific language governing permissions and |
13 # limitations under the License. | 13 # limitations under the License. |
14 { | 14 { |
15 'targets': [{ | 15 'targets': [{ |
16 'target_name': 'piex-selector', | 16 'target_name': 'piex-selector', |
17 'type': 'none', | 17 'type': 'none', |
18 'conditions': [ | 18 'conditions': [ |
19 [ 'skia_android_framework', { | 19 [ 'skia_android_framework', { |
20 'dependencies': [ 'android_deps.gyp:piex' ], | 20 'dependencies': [ 'android_deps.gyp:libpiex' ], |
21 'export_dependent_settings': [ 'android_deps.gyp:piex' ], | 21 'export_dependent_settings': [ 'android_deps.gyp:libpiex' ], |
22 }, { | 22 }, { |
23 'dependencies': [ 'piex' ], | 23 'dependencies': [ 'piex.gyp:piex' ], |
24 'export_dependent_settings': [ 'piex' ], | 24 'export_dependent_settings': [ 'piex.gyp:piex' ], |
25 }] | 25 }] |
26 ] | 26 ] |
27 },{ | 27 },{ |
28 'target_name': 'piex', | 28 'target_name': 'piex', |
29 'type': 'static_library', | 29 'type': 'static_library', |
30 'sources': [ | 30 'sources': [ |
31 '../third_party/externals/piex/src/piex.cc', | 31 '../third_party/externals/piex/src/piex.cc', |
32 '../third_party/externals/piex/src/tiff_parser.cc', | 32 '../third_party/externals/piex/src/tiff_parser.cc', |
33 ], | 33 ], |
34 'variables': { | 34 'variables': { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'sources': [ | 94 'sources': [ |
95 '../third_party/externals/piex/src/tiff_directory/tiff_directory.cc', | 95 '../third_party/externals/piex/src/tiff_directory/tiff_directory.cc', |
96 ], | 96 ], |
97 'variables': { | 97 'variables': { |
98 'headers': ['../third_party/externals/piex/src/tiff_directory/tiff_directory
.h'], | 98 'headers': ['../third_party/externals/piex/src/tiff_directory/tiff_directory
.h'], |
99 }, | 99 }, |
100 'include_dirs': ['../third_party/externals/piex'], | 100 'include_dirs': ['../third_party/externals/piex'], |
101 'dependencies': ['binary_parse'], | 101 'dependencies': ['binary_parse'], |
102 }], | 102 }], |
103 } | 103 } |
OLD | NEW |