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

Side by Side Diff: skia/skia.gyp

Issue 67173009: Adding new fuzzer deserialization test code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added logging.h Created 7 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 | Annotate | Revision Log
« no previous file with comments | « build/all.gyp ('k') | skia/tools/filter_fuzz_stub/filter_fuzz_stub.cc » ('j') | 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 'conditions': [ 6 'conditions': [
7 # In component mode (shared_lib), we build all of skia as a single DLL. 7 # In component mode (shared_lib), we build all of skia as a single DLL.
8 # However, in the static mode, we need to build skia as multiple targets 8 # However, in the static mode, we need to build skia as multiple targets
9 # in order to support the use case where a platform (e.g. Android) may 9 # in order to support the use case where a platform (e.g. Android) may
10 # already have a copy of skia as a system library. 10 # already have a copy of skia as a system library.
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 '../base/base.gyp:base', 126 '../base/base.gyp:base',
127 'skia', 127 'skia',
128 ], 128 ],
129 'include_dirs': [ 129 'include_dirs': [
130 '..', 130 '..',
131 ], 131 ],
132 'sources': [ 132 'sources': [
133 'ext/image_operations_bench.cc', 133 'ext/image_operations_bench.cc',
134 ], 134 ],
135 }, 135 },
136 {
137 'target_name': 'filter_fuzz_stub',
138 'type': 'executable',
139 'dependencies': [
140 '../base/base.gyp:base',
141 'skia.gyp:skia',
142 ],
143 'sources': [
144 'tools/filter_fuzz_stub/filter_fuzz_stub.cc',
145 ],
146 },
136 ], 147 ],
137 } 148 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | skia/tools/filter_fuzz_stub/filter_fuzz_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698