| Index: base/base.gypi
|
| diff --git a/base/base.gypi b/base/base.gypi
|
| index 8cfd5fd837c5cc89f65ec6f7ef46184d9f4c8f61..6e690ee38d2712a7e460648af51805dbcc473c4a 100644
|
| --- a/base/base.gypi
|
| +++ b/base/base.gypi
|
| @@ -445,8 +445,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/': [
|
| @@ -458,9 +456,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"', {
|
| @@ -606,16 +604,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',
|
| + ],
|
| + },
|
| }],
|
| ],
|
| }],
|
|
|