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

Side by Side Diff: gyp/gm.gyp

Issue 318493002: Android: remove -lcutils dependency (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 6 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/dm.gyp ('k') | gyp/tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build the "gm" (golden master) executable. 1 # GYP file to build the "gm" (golden master) executable.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gm_expectations', 8 'target_name': 'gm_expectations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs' : [ 10 'include_dirs' : [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'skia_lib.gyp:skia_lib', 48 'skia_lib.gyp:skia_lib',
49 'flags.gyp:flags', 49 'flags.gyp:flags',
50 'gm.gyp:gm_expectations', 50 'gm.gyp:gm_expectations',
51 'jsoncpp.gyp:jsoncpp', 51 'jsoncpp.gyp:jsoncpp',
52 'pdf.gyp:pdf', 52 'pdf.gyp:pdf',
53 ], 53 ],
54 'conditions': [ 54 'conditions': [
55 ['skia_android_framework', { 55 ['skia_android_framework', {
56 'libraries': [ 56 'libraries': [
57 '-lskia', 57 '-lskia',
58 '-lcutils',
59 ], 58 ],
60 }], 59 }],
61 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { 60 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', {
62 'sources': [ 61 'sources': [
63 '../src/utils/SkPDFRasterizer.cpp', 62 '../src/utils/SkPDFRasterizer.cpp',
64 ], 63 ],
65 }], 64 }],
66 ['skia_run_pdfviewer_in_gm', { 65 ['skia_run_pdfviewer_in_gm', {
67 'defines': [ 66 'defines': [
68 'SK_BUILD_NATIVE_PDF_RENDERER', 67 'SK_BUILD_NATIVE_PDF_RENDERER',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 '../src/gpu', 105 '../src/gpu',
107 ], 106 ],
108 'dependencies': [ 107 'dependencies': [
109 'gputest.gyp:skgputest', 108 'gputest.gyp:skgputest',
110 ], 109 ],
111 }], 110 }],
112 ], 111 ],
113 }, 112 },
114 ], 113 ],
115 } 114 }
OLDNEW
« no previous file with comments | « gyp/dm.gyp ('k') | gyp/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698