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

Side by Side Diff: gyp/pdfviewer.gyp

Issue 1266093003: Remove experimental/PdfViewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-03 (Monday) 10:43:56 EDT 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 | « gyp/most.gyp ('k') | gyp/pdfviewer_lib.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 Google Inc.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 # GYP file to build pdfviewer.
6 #
7 # To build on Linux:
8 # ./gyp_skia pdfviewer.gyp && make pdfviewer
9 #
10 {
11 'includes': [
12 'apptype_console.gypi',
13 ],
14 'targets': [
15 {
16 'target_name': 'pdfviewer',
17 'type': 'executable',
18 'sources': [
19 '../experimental/PdfViewer/pdf_viewer_main.cpp',
20 ],
21 'include_dirs': [
22 '../experimental/PdfViewer',
23 '../experimental/PdfViewer/inc',
24 '../experimental/PdfViewer/pdfparser',
25 '../experimental/PdfViewer/pdfparser/native',
26 ],
27 'dependencies': [
28 'chop_transparency',
29 'flags.gyp:flags',
30 'pdfviewer_lib.gyp:pdfviewer_lib',
31 'skia_lib.gyp:skia_lib',
32 ],
33 },
34 {
35 'target_name': 'chop_transparency',
36 'type': 'executable',
37 'sources': [
38 '../experimental/PdfViewer/chop_transparency_main.cpp',
39 ],
40 'include_dirs': [
41 # For SkBitmapHasher.h
42 '../src/utils/',
43 ],
44 'dependencies': [
45 'flags.gyp:flags',
46 'skia_lib.gyp:skia_lib',
47 ],
48 },
49 ],
50 }
OLDNEW
« no previous file with comments | « gyp/most.gyp ('k') | gyp/pdfviewer_lib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698