OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 'files/file_path_watcher_kqueue.cc', | 480 'files/file_path_watcher_kqueue.cc', |
481 'system_monitor/system_monitor_posix.cc', | 481 'system_monitor/system_monitor_posix.cc', |
482 ], | 482 ], |
483 'sources/': [ | 483 'sources/': [ |
484 ['include', '^process_util_linux\\.cc$'], | 484 ['include', '^process_util_linux\\.cc$'], |
485 ['include', '^sys_info_linux\\.cc$'], | 485 ['include', '^sys_info_linux\\.cc$'], |
486 ['include', '^sys_string_conversions_posix\\.cc$'], | 486 ['include', '^sys_string_conversions_posix\\.cc$'], |
487 ['include', '^worker_pool_linux\\.cc$'], | 487 ['include', '^worker_pool_linux\\.cc$'], |
488 # TODO(michaelbai): The below files are excluded because of the | 488 # TODO(michaelbai): The below files are excluded because of the |
489 # missing JNI, add them back when JNI is ready. | 489 # missing JNI, add them back when JNI is ready. |
490 ['exclude', '^android/path_utils\\.cc$'], | |
491 ['exclude', '^base_paths_android\\.cc$'], | |
492 ['exclude', '^message_pump_android\\.cc$'], | 490 ['exclude', '^message_pump_android\\.cc$'], |
493 ], | 491 ], |
494 }], | 492 }], |
495 [ 'OS != "mac"', { | 493 [ 'OS != "mac"', { |
496 'sources!': [ | 494 'sources!': [ |
497 'mac/scoped_aedesc.h' | 495 'mac/scoped_aedesc.h' |
498 ], | 496 ], |
499 }], | 497 }], |
500 # For now, just test the *BSD platforms enough to exclude them. | 498 # For now, just test the *BSD platforms enough to exclude them. |
501 # Subsequent changes will include them further. | 499 # Subsequent changes will include them further. |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 ['exclude', '^sys_string_conversions_linux\\.cc$'], | 657 ['exclude', '^sys_string_conversions_linux\\.cc$'], |
660 ['exclude', '^worker_pool_linux\\.cc$'], | 658 ['exclude', '^worker_pool_linux\\.cc$'], |
661 ], | 659 ], |
662 }], | 660 }], |
663 ], | 661 ], |
664 }], | 662 }], |
665 [ 'OS == "android" and _toolset == "target"', { | 663 [ 'OS == "android" and _toolset == "target"', { |
666 'dependencies': [ | 664 'dependencies': [ |
667 'symbolize', | 665 'symbolize', |
668 '../third_party/ashmem/ashmem.gyp:ashmem', | 666 '../third_party/ashmem/ashmem.gyp:ashmem', |
| 667 'base_jni_headers', |
| 668 ], |
| 669 'include_dirs': [ |
| 670 '<(SHARED_INTERMEDIATE_DIR)/base', |
669 ], | 671 ], |
670 'link_settings': { | 672 'link_settings': { |
671 'libraries': [ | 673 'libraries': [ |
672 '-llog', | 674 '-llog', |
673 ], | 675 ], |
674 }, | 676 }, |
675 'defines': [ | 677 'defines': [ |
676 'USE_SYMBOLIZE', | 678 'USE_SYMBOLIZE', |
677 ], | 679 ], |
678 'sources!': [ | 680 'sources!': [ |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 'third_party/xdg_mime/xdgmimemagic.c', | 902 'third_party/xdg_mime/xdgmimemagic.c', |
901 'third_party/xdg_mime/xdgmimemagic.h', | 903 'third_party/xdg_mime/xdgmimemagic.h', |
902 'third_party/xdg_mime/xdgmimeparent.c', | 904 'third_party/xdg_mime/xdgmimeparent.c', |
903 'third_party/xdg_mime/xdgmimeparent.h', | 905 'third_party/xdg_mime/xdgmimeparent.h', |
904 ], | 906 ], |
905 }, | 907 }, |
906 ], | 908 ], |
907 }], | 909 }], |
908 ], | 910 ], |
909 } | 911 } |
OLD | NEW |