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

Side by Side Diff: gyp/flags.gyp

Issue 1611323004: Treat bad values passed to --images as a fatal error (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Another gyp fix Created 4 years, 10 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
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP file to build flag parser 5 # GYP file to build flag parser
6 # 6 #
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'flags', 10 'target_name': 'flags',
(...skipping 21 matching lines...) Expand all
32 'include_dirs': [ 32 'include_dirs': [
33 '../include/gpu', 33 '../include/gpu',
34 '../src/gpu', 34 '../src/gpu',
35 ], 35 ],
36 'sources': [ 36 'sources': [
37 '../tools/flags/SkCommonFlags.cpp', 37 '../tools/flags/SkCommonFlags.cpp',
38 '../tools/flags/SkCommonFlags.h', 38 '../tools/flags/SkCommonFlags.h',
39 '../tools/flags/SkCommonFlagsConfig.cpp', 39 '../tools/flags/SkCommonFlagsConfig.cpp',
40 '../tools/flags/SkCommonFlagsConfig.h', 40 '../tools/flags/SkCommonFlagsConfig.h',
41 ], 41 ],
42 'conditions':[
43 # FIXME: We redefine this here because this target does not depend on ra w_codec, which
44 # defines it.
45 ['skia_codec_decodes_raw', {
46 'defines': [ 'SK_CODEC_DECODES_RAW' ],
47 }],
48 ],
42 'dependencies': [ 49 'dependencies': [
43 'skia_lib.gyp:skia_lib', 50 'skia_lib.gyp:skia_lib',
44 'flags.gyp:flags', 51 'flags.gyp:flags',
45 ], 52 ],
46 'direct_dependent_settings': { 53 'direct_dependent_settings': {
47 'include_dirs': [ 54 'include_dirs': [
48 '../include/gpu', 55 '../include/gpu',
49 '../src/gpu', 56 '../src/gpu',
50 '../tools/flags', 57 '../tools/flags',
51 ], 58 ],
52 } 59 }
53 }, 60 },
54 ], 61 ],
55 } 62 }
OLDNEW
« dm/DM.cpp ('K') | « gyp/common_variables.gypi ('k') | tools/flags/SkCommonFlags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698