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

Unified Diff: gn/shared_sources.gni

Issue 2343103002: GN: add a flag to implement Android_FrameworkDefs bot. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gn/shared_sources.gni
diff --git a/gn/shared_sources.gni b/gn/shared_sources.gni
index 71c3b548d2dc1c89436cf5bb9563743c53350ef4..2da3d2cb79648f90d6ae6ce1109a63a28814784f 100644
--- a/gn/shared_sources.gni
+++ b/gn/shared_sources.gni
@@ -71,14 +71,21 @@ _pdf_gypi = exec_script("gypi_to_gn.py",
skia_pdf_sources = _pdf_gypi.sources
_sources_gypi = exec_script("gypi_to_gn.py",
- [
- rebase_path("../gyp/skia_sources.gypi"),
- ],
- "scope",
- [ "../gyp/skia_sources.gypi" ])
+ [ rebase_path("../gyp/skia_sources.gypi") ],
+ "scope",
+ [ "../gyp/skia_sources.gypi" ])
skia_sksl_sources = get_path_info(_sources_gypi.sksl_sources, "abspath")
skia_utils_sources = get_path_info(_sources_gypi.utils_sources, "abspath")
# Skia Chromium defines. These flags will be defined in chromium If these
# become 'permanent', they should be moved into Chrome's skia build file.
skia_for_chromium_defines = [ "SK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS" ]
+
+_android_framework_defines =
+ exec_script(
+ "gypi_to_gn.py",
+ [ rebase_path("../gyp/skia_for_android_framework_defines.gypi") ],
+ "scope",
+ [ "../gyp/core.gypi" ])
+skia_android_framework_defines =
+ _android_framework_defines.skia_for_android_framework_defines
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698