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

Side by Side Diff: base/base.gypi

Issue 8429034: Upstream: Build net_unittests for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: address comments 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/all_android.gyp » ('j') | net/base/dns_reloader.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 'threading/worker_pool_posix.cc', 329 'threading/worker_pool_posix.cc',
330 'threading/worker_pool_posix.h', 330 'threading/worker_pool_posix.h',
331 'threading/worker_pool_win.cc', 331 'threading/worker_pool_win.cc',
332 'time.cc', 332 'time.cc',
333 'time.h', 333 'time.h',
334 'time_win.cc', 334 'time_win.cc',
335 'timer.cc', 335 'timer.cc',
336 'timer.h', 336 'timer.h',
337 'tracked_objects.cc', 337 'tracked_objects.cc',
338 'tracked_objects.h', 338 'tracked_objects.h',
339 » 'tracking_info.cc', 339 'tracking_info.cc',
340 » 'tracking_info.h', 340 'tracking_info.h',
341 'tuple.h', 341 'tuple.h',
342 'utf_offset_string_conversions.cc', 342 'utf_offset_string_conversions.cc',
343 'utf_offset_string_conversions.h', 343 'utf_offset_string_conversions.h',
344 'utf_string_conversion_utils.cc', 344 'utf_string_conversion_utils.cc',
345 'utf_string_conversion_utils.h', 345 'utf_string_conversion_utils.h',
346 'utf_string_conversions.cc', 346 'utf_string_conversions.cc',
347 'utf_string_conversions.h', 347 'utf_string_conversions.h',
348 'values.cc', 348 'values.cc',
349 'values.h', 349 'values.h',
350 'value_conversions.cc', 350 'value_conversions.cc',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 [ 'OS != "linux" and OS != "openbsd"', { 431 [ 'OS != "linux" and OS != "openbsd"', {
432 'sources!': [ 432 'sources!': [
433 # Not automatically excluded by the *linux.cc rules. 433 # Not automatically excluded by the *linux.cc rules.
434 'linux_util.cc', 434 'linux_util.cc',
435 ], 435 ],
436 }, 436 },
437 ], 437 ],
438 [ 'OS == "android"', { 438 [ 'OS == "android"', {
439 'sources!': [ 439 'sources!': [
440 'files/file_path_watcher_kqueue.cc', 440 'files/file_path_watcher_kqueue.cc',
441 'debug/stack_trace.cc',
442 'debug/stack_trace_posix.cc',
443 'system_monitor/system_monitor_posix.cc', 441 'system_monitor/system_monitor_posix.cc',
444 ], 442 ],
445 'sources/': [ 443 'sources/': [
446 ['include', '^native_library_linux\\.cc$'], 444 ['include', '^native_library_linux\\.cc$'],
447 ['include', '^process_util_linux\\.cc$'], 445 ['include', '^process_util_linux\\.cc$'],
448 ['include', '^sys_info_linux\\.cc$'], 446 ['include', '^sys_info_linux\\.cc$'],
449 ['include', '^sys_string_conversions_linux\\.cc$'], 447 ['include', '^sys_string_conversions_linux\\.cc$'],
450 ['include', '^worker_pool_linux\\.cc$'], 448 ['include', '^worker_pool_linux\\.cc$'],
451 # TODO(michaelbai): The below files are excluded because of the 449 # TODO(michaelbai): The below files are excluded because of the
452 # missing JNI, add them back when JNI is ready. 450 # missing JNI, add them back when JNI is ready.
453 ['exclude', '^android/'], 451 ['exclude', '^android/'],
454 ['exclude', '^message_pump_android\\.cc$'],
455 ['exclude', '^base_paths_android\\.cc$'], 452 ['exclude', '^base_paths_android\\.cc$'],
456 ['exclude', '^debug/stack_trace_android\\.cc$'], 453 ['exclude', '^debug/stack_trace_android\\.cc$'],
454 ['exclude', '^message_pump_android\\.cc$'],
457 ], 455 ],
458 }], 456 }],
459 [ 'OS != "mac"', { 457 [ 'OS != "mac"', {
460 'sources!': [ 458 'sources!': [
461 'mac/scoped_aedesc.h' 459 'mac/scoped_aedesc.h'
462 ], 460 ],
463 }], 461 }],
464 # For now, just test the *BSD platforms enough to exclude them. 462 # For now, just test the *BSD platforms enough to exclude them.
465 # Subsequent changes will include them further. 463 # Subsequent changes will include them further.
466 [ 'OS != "freebsd"', { 464 [ 'OS != "freebsd"', {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 ], 589 ],
592 }], 590 }],
593 [ 'OS == "android"', { 591 [ 'OS == "android"', {
594 'dependencies': [ 592 'dependencies': [
595 'symbolize', 593 'symbolize',
596 '../third_party/ashmem/ashmem.gyp:ashmem#target', 594 '../third_party/ashmem/ashmem.gyp:ashmem#target',
597 ], 595 ],
598 'defines': [ 596 'defines': [
599 'USE_SYMBOLIZE', 597 'USE_SYMBOLIZE',
600 ], 598 ],
601 'link_settings': {
602 'libraries': [
603 '-llog',
604 ],
605 },
606 'conditions': [ 599 'conditions': [
607 [ '_toolset=="host" and host_os=="linux"', { 600 [ '_toolset=="host" and host_os=="linux"', {
608 'dependencies': [ 601 'dependencies': [
609 '../build/linux/system.gyp:glib', 602 '../build/linux/system.gyp:glib',
610 ], 603 ],
604 'sources/': [
605 ['include', '^atomicops_internals_x86_gcc\\.cc$'],
606 ],
607 }],
608 [ '_toolset=="target"', {
609 'sources!': [
610 'debug/stack_trace.cc',
611 'debug/stack_trace_posix.cc',
612 ],
613 'link_settings': {
614 'libraries': [
615 '-llog',
616 ],
617 }
611 }], 618 }],
612 ], 619 ],
613 }], 620 }],
614 [ 'OS == "freebsd" or OS == "openbsd"', { 621 [ 'OS == "freebsd" or OS == "openbsd"', {
615 'include_dirs': [ 622 'include_dirs': [
616 '/usr/local/include', 623 '/usr/local/include',
617 ], 624 ],
618 'link_settings': { 625 'link_settings': {
619 'libraries': [ 626 'libraries': [
620 '-L/usr/local/lib -lexecinfo', 627 '-L/usr/local/lib -lexecinfo',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 'third_party/xdg_mime/xdgmimemagic.c', 833 'third_party/xdg_mime/xdgmimemagic.c',
827 'third_party/xdg_mime/xdgmimemagic.h', 834 'third_party/xdg_mime/xdgmimemagic.h',
828 'third_party/xdg_mime/xdgmimeparent.c', 835 'third_party/xdg_mime/xdgmimeparent.c',
829 'third_party/xdg_mime/xdgmimeparent.h', 836 'third_party/xdg_mime/xdgmimeparent.h',
830 ], 837 ],
831 }, 838 },
832 ], 839 ],
833 }], 840 }],
834 ], 841 ],
835 } 842 }
OLDNEW
« no previous file with comments | « no previous file | build/all_android.gyp » ('j') | net/base/dns_reloader.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698