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

Side by Side Diff: public.bzl

Issue 1645093002: Move SkPixelXorXfermode.h to include/client/android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add include/client/android to public.bzl Created 4 years, 10 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 | « include/effects/SkPixelXorXfermode.h ('k') | 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 # 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 BASE_DEPS_IOS = [] 328 BASE_DEPS_IOS = []
329 329
330 ################################################################################ 330 ################################################################################
331 ## INCLUDES 331 ## INCLUDES
332 ################################################################################ 332 ################################################################################
333 333
334 # Includes needed by Skia implementation. Not public includes. 334 # Includes needed by Skia implementation. Not public includes.
335 INCLUDES = [ 335 INCLUDES = [
336 "include/android", 336 "include/android",
337 "include/c", 337 "include/c",
338 "include/client/android",
338 "include/codec", 339 "include/codec",
339 "include/config", 340 "include/config",
340 "include/core", 341 "include/core",
341 "include/effects", 342 "include/effects",
342 "include/gpu", 343 "include/gpu",
343 "include/images", 344 "include/images",
344 "include/pathops", 345 "include/pathops",
345 "include/pipe", 346 "include/pipe",
346 "include/ports", 347 "include/ports",
347 "include/private", 348 "include/private",
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 511
511 LINKOPTS_ANDROID = [ 512 LINKOPTS_ANDROID = [
512 "-lEGL", 513 "-lEGL",
513 ] 514 ]
514 515
515 LINKOPTS_IOS = [] 516 LINKOPTS_IOS = []
516 517
517 LINKOPTS_ALL = [ 518 LINKOPTS_ALL = [
518 "-ldl", 519 "-ldl",
519 ] 520 ]
OLDNEW
« no previous file with comments | « include/effects/SkPixelXorXfermode.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698