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