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

Unified Diff: base/base.gypi

Issue 8610006: Upstream: Gyp changes to build net_unittests for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 1 month 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 | build/android/system.gyp » ('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 fcf014a222f0f6f3f2369b4c47f60bccc9db653c..93ad8103417392d3ef8eb24105d08c4778ee83bc 100644
--- a/base/base.gypi
+++ b/base/base.gypi
@@ -446,8 +446,6 @@
[ '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/': [
@@ -457,9 +455,9 @@
# 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$'],
],
}],
[ 'OS != "mac"', {
@@ -608,16 +606,25 @@
'defines': [
'USE_SYMBOLIZE',
],
- 'link_settings': {
- 'libraries': [
- '-llog',
- ],
- },
'conditions': [
[ '_toolset=="host" and host_os=="linux"', {
'dependencies': [
'../build/linux/system.gyp:glib',
],
+ 'sources/': [
+ ['include', '^atomicops_internals_x86_gcc\\.cc$'],
+ ],
+ }],
+ [ '_toolset=="target"', {
+ 'sources!': [
+ 'debug/stack_trace.cc',
+ 'debug/stack_trace_posix.cc',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-llog',
+ ],
+ },
}],
],
}],
« no previous file with comments | « no previous file | build/android/system.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698