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

Side by Side Diff: platform_tools/android/tests/expectations/Android.mk

Issue 306313004: Update expectations to fix self tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 ############################################################################### 2 ###############################################################################
3 # 3 #
4 # THIS FILE IS AUTOGENERATED BY GYP_TO_ANDROID.PY. DO NOT EDIT. 4 # THIS FILE IS AUTOGENERATED BY GYP_TO_ANDROID.PY. DO NOT EDIT.
5 # 5 #
6 ############################################################################### 6 ###############################################################################
7 7
8 BASE_PATH := $(call my-dir) 8 BASE_PATH := $(call my-dir)
9 LOCAL_PATH:= $(call my-dir) 9 LOCAL_PATH:= $(call my-dir)
10 10
11 ############################################################################### 11 ###############################################################################
12 # 12 #
13 # PROBLEMS WITH SKIA DEBUGGING?? READ THIS... 13 # PROBLEMS WITH SKIA DEBUGGING?? READ THIS...
14 # 14 #
15 # The debug build results in changes to the Skia headers. This means that those 15 # The debug build results in changes to the Skia headers. This means that those
16 # using libskia must also be built with the debug version of the Skia headers. 16 # using libskia must also be built with the debug version of the Skia headers.
17 # There are a few scenarios where this comes into play: 17 # There are a few scenarios where this comes into play:
18 # 18 #
19 # (1) You're building debug code that depends on libskia. 19 # (1) You're building debug code that depends on libskia.
20 # (a) If libskia is built in release, then define SK_RELEASE when building 20 # (a) If libskia is built in release, then define SK_RELEASE when building
21 # your sources. 21 # your sources.
22 # (b) If libskia is built with debugging (see step 2), then no changes are 22 # (b) If libskia is built with debugging (see step 2), then no changes are
23 # needed since your sources and libskia have been built with SK_DEBUG. 23 # needed since your sources and libskia have been built with SK_DEBUG.
24 # (2) You're building libskia in debug mode. 24 # (2) You're building libskia in debug mode.
25 # (a) RECOMMENDED: You can build the entire system in debug mode. Do this by 25 # (a) RECOMMENDED: You can build the entire system in debug mode. Do this by
26 # updating your build/config.mk to include -DSK_DEBUG on the line that 26 # updating your build/core/config.mk to include -DSK_DEBUG on the line
27 # defines COMMON_GLOBAL_CFLAGS 27 # that defines COMMON_GLOBAL_CFLAGS
28 # (b) You can update all the users of libskia to define SK_DEBUG when they are 28 # (b) You can update all the users of libskia to define SK_DEBUG when they are
29 # building their sources. 29 # building their sources.
30 # 30 #
31 # NOTE: If neither SK_DEBUG or SK_RELEASE are defined then Skia checks NDEBUG to 31 # NOTE: If neither SK_DEBUG or SK_RELEASE are defined then Skia checks NDEBUG to
32 # determine which build type to use. 32 # determine which build type to use.
33 ############################################################################### 33 ###############################################################################
34 34
35 include $(CLEAR_VARS) 35 include $(CLEAR_VARS)
36 LOCAL_ARM_MODE := thumb 36 LOCAL_ARM_MODE := thumb
37 ifeq ($(TARGET_ARCH),arm) 37 ifeq ($(TARGET_ARCH),arm)
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 include $(BASE_PATH)/bench/Android.mk 153 include $(BASE_PATH)/bench/Android.mk
154 154
155 # golden-master (fidelity / regression test) 155 # golden-master (fidelity / regression test)
156 include $(BASE_PATH)/gm/Android.mk 156 include $(BASE_PATH)/gm/Android.mk
157 157
158 # unit-tests 158 # unit-tests
159 include $(BASE_PATH)/tests/Android.mk 159 include $(BASE_PATH)/tests/Android.mk
160 160
161 # diamond-master (one test to rule them all) 161 # diamond-master (one test to rule them all)
162 include $(BASE_PATH)/dm/Android.mk 162 include $(BASE_PATH)/dm/Android.mk
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698