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

Side by Side Diff: public.bzl

Issue 2045263003: Stop trying to build files that are not there (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 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 # 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 BASE_SRCS_ALL = struct( 72 BASE_SRCS_ALL = struct(
73 include = [ 73 include = [
74 "src/**/*.h", 74 "src/**/*.h",
75 "src/**/*.cpp", 75 "src/**/*.cpp",
76 76
77 # Third Party 77 # Third Party
78 "third_party/etc1/*.cpp", 78 "third_party/etc1/*.cpp",
79 "third_party/etc1/*.h", 79 "third_party/etc1/*.h",
80 "third_party/ktx/*.cpp", 80 "third_party/ktx/*.cpp",
81 "third_party/ktx/*.h", 81 "third_party/ktx/*.h",
82
83 "third_party/libpng/*.c",
84 "third_party/libpng/*.h",
85 ], 82 ],
86 exclude = PRIVATE_HDRS_LIST + [ 83 exclude = PRIVATE_HDRS_LIST + [
87 # Exclude platform-dependent files. 84 # Exclude platform-dependent files.
88 "src/android/*", 85 "src/android/*",
89 "src/codec/*", 86 "src/codec/*",
90 "src/device/xps/*", # Windows-only. Move to ports? 87 "src/device/xps/*", # Windows-only. Move to ports?
91 "src/doc/*_XPS.cpp", # Windows-only. Move to ports? 88 "src/doc/*_XPS.cpp", # Windows-only. Move to ports?
92 "src/fonts/SkFontMgr_fontconfig.cpp", 89 "src/fonts/SkFontMgr_fontconfig.cpp",
93 "src/gpu/gl/android/*", 90 "src/gpu/gl/android/*",
94 "src/gpu/gl/egl/*", 91 "src/gpu/gl/egl/*",
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 "src/gpu", 376 "src/gpu",
380 "src/image", 377 "src/image",
381 "src/lazy", 378 "src/lazy",
382 "src/opts", 379 "src/opts",
383 "src/ports", 380 "src/ports",
384 "src/pdf", 381 "src/pdf",
385 "src/sfnt", 382 "src/sfnt",
386 "src/utils", 383 "src/utils",
387 "third_party/etc1", 384 "third_party/etc1",
388 "third_party/ktx", 385 "third_party/ktx",
389 "third_party/libpng",
390 ] 386 ]
391 387
392 ################################################################################ 388 ################################################################################
393 ## DM_SRCS 389 ## DM_SRCS
394 ################################################################################ 390 ################################################################################
395 391
396 DM_SRCS_ALL = struct( 392 DM_SRCS_ALL = struct(
397 include = [ 393 include = [
398 "dm/*.cpp", 394 "dm/*.cpp",
399 "dm/*.h", 395 "dm/*.h",
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 602
607 LINKOPTS_ANDROID = [ 603 LINKOPTS_ANDROID = [
608 "-lEGL", 604 "-lEGL",
609 ] 605 ]
610 606
611 LINKOPTS_IOS = [] 607 LINKOPTS_IOS = []
612 608
613 LINKOPTS_ALL = [ 609 LINKOPTS_ALL = [
614 "-ldl", 610 "-ldl",
615 ] 611 ]
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