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

Side by Side Diff: gyp/gm.gyp

Issue 140503007: Scripts to generate Android.mk for framework Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Update copyrights, remove unnecessary code. Created 6 years, 11 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 # 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 ], 106 ],
107 }], 107 }],
108 ['skia_gpu == 1', { 108 ['skia_gpu == 1', {
109 'include_dirs': [ 109 'include_dirs': [
110 '../src/gpu', 110 '../src/gpu',
111 ], 111 ],
112 'dependencies': [ 112 'dependencies': [
113 'gputest.gyp:skgputest', 113 'gputest.gyp:skgputest',
114 ], 114 ],
115 }], 115 }],
116 ['skia_android_framework', {
djsollen 2014/01/21 17:47:37 if we aren't building gm yet, do we need this?
scroggo 2014/01/21 19:10:06 Removed.
117 'dependencies!': [
118 'poppler.gyp:libpoppler-cpp-gpl',
119 ],
120 }],
116 ], 121 ],
117 }, 122 },
118 ], 123 ],
119 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698