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

Side by Side Diff: platform_tools/android/gyp_gen/makefile_writer.py

Issue 391423002: Generate makefile for bench_pictures. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Make bench_pictures depend on skia. Created 6 years, 5 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 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 # Copyright 2014 Google Inc. 3 # Copyright 2014 Google Inc.
4 # 4 #
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 """ 8 """
9 Functions for creating an Android.mk from already created dictionaries. 9 Functions for creating an Android.mk from already created dictionaries.
10 """ 10 """
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 ) 111 )
112 112
113 SKIA_TOOLS = ( 113 SKIA_TOOLS = (
114 """ 114 """
115 ############################################################# 115 #############################################################
116 # Build the skia tools 116 # Build the skia tools
117 # 117 #
118 118
119 # benchmark (timings) 119 # benchmark (timings)
120 include $(BASE_PATH)/bench/Android.mk 120 include $(BASE_PATH)/bench/Android.mk
121 include $(BASE_PATH)/tools/Android.mk
121 122
122 # golden-master (fidelity / regression test) 123 # golden-master (fidelity / regression test)
123 include $(BASE_PATH)/gm/Android.mk 124 include $(BASE_PATH)/gm/Android.mk
124 125
125 # unit-tests 126 # unit-tests
126 include $(BASE_PATH)/tests/Android.mk 127 include $(BASE_PATH)/tests/Android.mk
127 128
128 # diamond-master (one test to rule them all) 129 # diamond-master (one test to rule them all)
129 include $(BASE_PATH)/dm/Android.mk 130 include $(BASE_PATH)/dm/Android.mk
130 """ 131 """
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 if data.condition: 225 if data.condition:
225 f.write('ifeq ($(%s), true)\n' % data.condition) 226 f.write('ifeq ($(%s), true)\n' % data.condition)
226 write_local_vars(f, data.vars_dict, True, data.name) 227 write_local_vars(f, data.vars_dict, True, data.name)
227 if data.condition: 228 if data.condition:
228 f.write('endif\n\n') 229 f.write('endif\n\n')
229 230
230 write_include_stlport(f) 231 write_include_stlport(f)
231 f.write('include $(BUILD_SHARED_LIBRARY)\n') 232 f.write('include $(BUILD_SHARED_LIBRARY)\n')
232 f.write(SKIA_TOOLS) 233 f.write(SKIA_TOOLS)
233 234
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698