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

Unified Diff: base/base.gypi

Issue 10698149: Add minimal support for process_utils on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@all-ios-tweak
Patch Set: Tweak include in gyp; eliminate patch bleed Created 8 years, 5 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 | « base/base.gyp ('k') | base/process_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base.gypi
diff --git a/base/base.gypi b/base/base.gypi
index de1ebc768fddb2e9b2e2379360d4084dfc9bffca..c5397a59fdfbac3ea731d83f5356ce31d9ff57c9 100644
--- a/base/base.gypi
+++ b/base/base.gypi
@@ -272,6 +272,7 @@
'process_util.cc',
'process_util.h',
'process_util_freebsd.cc',
+ 'process_util_ios.mm',
'process_util_linux.cc',
'process_util_mac.mm',
'process_util_openbsd.cc',
@@ -569,11 +570,12 @@
['include', '^sys_string_conversions_mac\\.'],
['include', '^time_mac\\.'],
['include', '^worker_pool_mac\\.'],
- # TODO(ios): Remove these as base/ is unforked.
- # For now, exclude everything that doesn't build as-is, just to
- # get something building on a bot.
- ['exclude', '^message_pump'],
+ # Exclude all process_util except the minimal implementation
+ # needed on iOS (mostly for unit tests).
['exclude', '^process_util'],
+ ['include', '^process_util_ios\\.mm$'],
+ # TODO(ios): Add message_pump support.
+ ['exclude', '^message_pump'],
],
}],
['OS != "mac" or >(nacl_untrusted_build)==1', {
« no previous file with comments | « base/base.gyp ('k') | base/process_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698