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

Side by Side Diff: gyp/common.gypi

Issue 12387018: collect minidump if it chrashes (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('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 2011 The Android Open Source Project 1 # Copyright 2011 The Android Open Source Project
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 # 5 #
6 # This file is automatically included by gyp_skia when building any target. 6 # This file is automatically included by gyp_skia when building any target.
7 7
8 { 8 {
9 'includes': [ 9 'includes': [
10 'common_variables.gypi', 10 'common_variables.gypi',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 [ 'skia_angle', { 69 [ 'skia_angle', {
70 'defines': [ 70 'defines': [
71 'SK_ANGLE', 71 'SK_ANGLE',
72 ], 72 ],
73 'direct_dependent_settings': { 73 'direct_dependent_settings': {
74 'defines': [ 74 'defines': [
75 'SK_ANGLE', 75 'SK_ANGLE',
76 ], 76 ],
77 }, 77 },
78 }], 78 }],
79 [ 'skia_win_debuggers_path and skia_os == "win"',
80 {
81 'defines': [
82 'SK_USE_CDB',
83 ],
84 },
85 ],
79 ], 86 ],
80 'configurations': { 87 'configurations': {
81 'Debug': { 88 'Debug': {
82 'defines': [ 89 'defines': [
83 'SK_DEBUG', 90 'SK_DEBUG',
84 'GR_DEBUG=1', 91 'GR_DEBUG=1',
85 'SK_DEVELOPER=1', 92 'SK_DEVELOPER=1',
86 ], 93 ],
87 }, 94 },
88 'Release': { 95 'Release': {
89 'defines': [ 96 'defines': [
90 'SK_RELEASE', 97 'SK_RELEASE',
91 'GR_RELEASE=1', 98 'GR_RELEASE=1',
92 ], 99 ],
93 }, 100 },
94 'Release_Developer': { 101 'Release_Developer': {
95 'inherit_from': ['Release'], 102 'inherit_from': ['Release'],
96 'defines': [ 103 'defines': [
97 'SK_DEVELOPER=1', 104 'SK_DEVELOPER=1',
98 ], 105 ],
99 }, 106 },
100 }, 107 },
101 }, # end 'target_defaults' 108 }, # end 'target_defaults'
102 } 109 }
103 # Local Variables: 110 # Local Variables:
104 # tab-width:2 111 # tab-width:2
105 # indent-tabs-mode:nil 112 # indent-tabs-mode:nil
106 # End: 113 # End:
107 # vim: set expandtab tabstop=2 shiftwidth=2: 114 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698