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

Unified Diff: base/base.gypi

Issue 8387053: regex fixes in base.gypi for android files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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 | « no previous file | no next file » | 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 8fa20dc31ae680c715d7cdb58e803be84081df76..614d8a7bf3a33e49949d683d9e90ef17855339b3 100644
--- a/base/base.gypi
+++ b/base/base.gypi
@@ -434,21 +434,24 @@
},
],
[ 'OS == "android"', {
+ 'sources!': [
+ 'files/file_path_watcher_kqueue.cc',
+ 'debug/stack_trace.cc',
+ 'debug/stack_trace_posix.cc',
+ 'system_monitor/system_monitor_posix.cc',
+ ],
'sources/': [
- ['exclude', '^debug/stack_trace.cc'],
- ['exclude', '^debug/stack_trace_posix.cc'],
- ['exclude', '^system_monitor/system_monitor_posix.cc'],
- ['include', '^native_library_linux.cc'],
- ['include', '^process_util_linux.cc'],
- ['include', '^sys_info_linux.cc'],
- ['include', '^sys_string_conversions_linux.cc'],
- ['include', '^worker_pool_linux.cc'],
+ ['include', '^native_library_linux\\.cc$'],
+ ['include', '^process_util_linux\\.cc$'],
+ ['include', '^sys_info_linux\\.cc$'],
+ ['include', '^sys_string_conversions_linux\\.cc$'],
+ ['include', '^worker_pool_linux\\.cc$'],
# TODO(michaelbai): The below files are excluded because of the
# missing JNI, add them back when JNI is ready.
['exclude', '^android/'],
- ['exclude', '^message_pump_android.cc'],
- ['exclude', '^base_paths_android.cc'],
- ['exclude', '^debug/stack_trace_android.cc'],
+ ['exclude', '^message_pump_android\\.cc$'],
+ ['exclude', '^base_paths_android\\.cc$'],
+ ['exclude', '^debug/stack_trace_android\\.cc$'],
],
}],
[ 'OS != "mac"', {
« 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