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

Side by Side Diff: gyp/piex.gyp

Issue 1520403003: Prototype of RAW decoding in Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Initial upload of the Prototype. Created 5 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
OLDNEW
(Empty)
1 # Copyright 2015 Google Inc. All Rights Reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (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
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 {
15 'variables': {
16 'skia_warnings_as_errors': 0,
17 },
18 'targets': [{
19 'target_name': 'piex',
20 'type': 'static_library',
21 'sources': [
22 '../third_party/externals/piex/src/piex.cc',
23 '../third_party/externals/piex/src/tiff_parser.cc',
24 ],
25 'variables': {
26 'headers': [
27 '../third_party/externals/piex/src/piex.h',
28 '../third_party/externals/piex/src/piex_types.h',
29 '../third_party/externals/piex/src/tiff_parser.h',
30 ],
31 },
32 'include_dirs': ['../third_party/externals/piex'],
33 'cflags': ['-Wsign-compare'],
34 'dependencies': [
35 'binary_parse',
36 'image_type_recognition',
37 'tiff_directory',
38 ],
39 'direct_dependent_settings': {
40 'include_dirs': [
41 '../third_party/externals/piex',
42 ],
43 },
44 }, {
45 'target_name': 'binary_parse',
46 'type': 'static_library',
47 'sources': [
48 '../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.cc ',
49 '../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.cc' ,
50 ],
51 'variables': {
52 'headers': [
53 '../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.h' ,
54 '../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.h',
55 ],
56 },
57 'include_dirs': ['../third_party/externals/piex'],
58 'cflags': ['-Wsign-compare'],
59 }, {
60 'target_name': 'image_type_recognition',
61 'type': 'static_library',
62 'sources': [
63 '../third_party/externals/piex/src/image_type_recognition/image_type_recogni tion_lite.cc',
64 ],
65 'variables': {
66 'headers': ['../third_party/externals/piex/src/image_type_recognition/image_ type_recognition_lite.h'],
67 },
68 'include_dirs': ['../third_party/externals/piex'],
69 'cflags': ['-Wsign-compare'],
70 'dependencies': ['binary_parse'],
71 }, {
72 'target_name': 'tiff_directory',
73 'type': 'static_library',
74 'sources': [
75 '../third_party/externals/piex/src/tiff_directory/tiff_directory.cc',
76 ],
77 'variables': {
78 'headers': ['../third_party/externals/piex/src/tiff_directory/tiff_directory .h'],
79 },
80 'include_dirs': ['../third_party/externals/piex'],
81 'dependencies': ['binary_parse'],
82 }],
83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698