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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1279123007: SkPDF: allow PDF module to be disabled in DM and SampleApp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-11 (Tuesday) 10:04:57 EDT : #if SK_SUPPORT_PDF Created 5 years, 4 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
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('j') | samplecode/SampleApp.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 [ 'skia_os == "chromeos"', { 246 [ 'skia_os == "chromeos"', {
247 'sources!': [ 247 'sources!': [
248 '../samplecode/SampleLighting.cpp', #doesn't compile due to gpu dep endencies 248 '../samplecode/SampleLighting.cpp', #doesn't compile due to gpu dep endencies
249 ], 249 ],
250 }], 250 }],
251 [ 'skia_gpu == 1', { 251 [ 'skia_gpu == 1', {
252 'dependencies': [ 252 'dependencies': [
253 'gputest.gyp:skgputest', 253 'gputest.gyp:skgputest',
254 ], 254 ],
255 }], 255 }],
256 [ 'not skia_pdf', {
257 'dependencies!': [ 'pdf.gyp:pdf' ],
258 'dependencies': [ 'pdf.gyp:nopdf' ],
259 }],
256 ], 260 ],
257 }, 261 },
258 ], 262 ],
259 } 263 }
OLDNEW
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('j') | samplecode/SampleApp.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698