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

Side by Side Diff: public.bzl

Issue 2184143002: Rename textual includes as *.inc. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 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/animator.gyp ('k') | src/animator/SkBuildCondensedInfo.cpp » ('j') | 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 # Skylark macros 2 # Skylark macros
3 ################################################################################ 3 ################################################################################
4 4
5 is_bazel = not hasattr(native, "genmpm") 5 is_bazel = not hasattr(native, "genmpm")
6 6
7 def portable_select(select_dict, bazel_condition, default_condition): 7 def portable_select(select_dict, bazel_condition, default_condition):
8 """Replaces select() with a Bazel-friendly wrapper. 8 """Replaces select() with a Bazel-friendly wrapper.
9 9
10 Args: 10 Args:
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 else: 50 else:
51 return native.glob(srcs.include) 51 return native.glob(srcs.include)
52 return [] 52 return []
53 53
54 ################################################################################ 54 ################################################################################
55 ## PRIVATE_HDRS 55 ## PRIVATE_HDRS
56 ################################################################################ 56 ################################################################################
57 57
58 PRIVATE_HDRS_LIST = [ 58 PRIVATE_HDRS_LIST = [
59 "include/private/**/*", 59 "include/private/**/*",
60 "src/utils/SkWhitelistChecksums.cpp", 60 "src/utils/SkWhitelistChecksums.inc",
61 ] 61 ]
62 62
63 PRIVATE_HDRS = struct( 63 PRIVATE_HDRS = struct(
64 include = PRIVATE_HDRS_LIST, 64 include = PRIVATE_HDRS_LIST,
65 ) 65 )
66 66
67 ################################################################################ 67 ################################################################################
68 ## BASE_SRCS 68 ## BASE_SRCS
69 ################################################################################ 69 ################################################################################
70 70
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 612
613 LINKOPTS_ANDROID = [ 613 LINKOPTS_ANDROID = [
614 "-lEGL", 614 "-lEGL",
615 ] 615 ]
616 616
617 LINKOPTS_IOS = [] 617 LINKOPTS_IOS = []
618 618
619 LINKOPTS_ALL = [ 619 LINKOPTS_ALL = [
620 "-ldl", 620 "-ldl",
621 ] 621 ]
OLDNEW
« no previous file with comments | « gyp/animator.gyp ('k') | src/animator/SkBuildCondensedInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698