| 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 [ 'OS == "android"', { | 478 [ 'OS == "android"', { |
| 479 'sources!': [ | 479 'sources!': [ |
| 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 | |
| 489 # missing JNI, add them back when JNI is ready. | |
| 490 ['exclude', '^message_pump_android\\.cc$'], | |
| 491 ], | 488 ], |
| 492 }], | 489 }], |
| 493 [ 'OS != "mac"', { | 490 [ 'OS != "mac"', { |
| 494 'sources!': [ | 491 'sources!': [ |
| 495 'mac/scoped_aedesc.h' | 492 'mac/scoped_aedesc.h' |
| 496 ], | 493 ], |
| 497 }], | 494 }], |
| 498 # For now, just test the *BSD platforms enough to exclude them. | 495 # For now, just test the *BSD platforms enough to exclude them. |
| 499 # Subsequent changes will include them further. | 496 # Subsequent changes will include them further. |
| 500 [ 'OS != "freebsd"', { | 497 [ 'OS != "freebsd"', { |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 'third_party/xdg_mime/xdgmimemagic.c', | 900 'third_party/xdg_mime/xdgmimemagic.c', |
| 904 'third_party/xdg_mime/xdgmimemagic.h', | 901 'third_party/xdg_mime/xdgmimemagic.h', |
| 905 'third_party/xdg_mime/xdgmimeparent.c', | 902 'third_party/xdg_mime/xdgmimeparent.c', |
| 906 'third_party/xdg_mime/xdgmimeparent.h', | 903 'third_party/xdg_mime/xdgmimeparent.h', |
| 907 ], | 904 ], |
| 908 }, | 905 }, |
| 909 ], | 906 ], |
| 910 }], | 907 }], |
| 911 ], | 908 ], |
| 912 } | 909 } |
| OLD | NEW |