OLD | NEW |
---|---|
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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
428 }], | 428 }], |
429 [ 'OS != "linux" and OS != "openbsd"', { | 429 [ 'OS != "linux" and OS != "openbsd"', { |
430 'sources!': [ | 430 'sources!': [ |
431 # Not automatically excluded by the *linux.cc rules. | 431 # Not automatically excluded by the *linux.cc rules. |
432 'linux_util.cc', | 432 'linux_util.cc', |
433 ], | 433 ], |
434 }, | 434 }, |
435 ], | 435 ], |
436 [ 'OS == "android"', { | 436 [ 'OS == "android"', { |
437 'sources/': [ | 437 'sources/': [ |
438 ['exclude', '^files/file_path_watcher_kqueue.cc'], | |
Mark Mentovai
2011/10/31 22:27:22
In this entire section:
The dots should be escape
| |
438 ['exclude', '^debug/stack_trace.cc'], | 439 ['exclude', '^debug/stack_trace.cc'], |
439 ['exclude', '^debug/stack_trace_posix.cc'], | 440 ['exclude', '^debug/stack_trace_posix.cc'], |
440 ['exclude', '^system_monitor/system_monitor_posix.cc'], | 441 ['exclude', '^system_monitor/system_monitor_posix.cc'], |
441 ['include', '^native_library_linux.cc'], | 442 ['include', '^native_library_linux.cc'], |
442 ['include', '^process_util_linux.cc'], | 443 ['include', '^process_util_linux.cc'], |
443 ['include', '^sys_info_linux.cc'], | 444 ['include', '^sys_info_linux.cc'], |
444 ['include', '^sys_string_conversions_linux.cc'], | 445 ['include', '^sys_string_conversions_linux.cc'], |
445 ['include', '^worker_pool_linux.cc'], | 446 ['include', '^worker_pool_linux.cc'], |
446 # TODO(michaelbai): The below files are excluded because of the | 447 # TODO(michaelbai): The below files are excluded because of the |
447 # missing JNI, add them back when JNI is ready. | 448 # missing JNI, add them back when JNI is ready. |
448 ['exclude', '^android/'], | 449 ['exclude', '^android/'], |
Mark Mentovai
2011/10/31 22:27:22
This one item is an exception, it needs to be excl
| |
449 ['exclude', '^message_pump_android.cc'], | 450 ['exclude', '^message_pump_android.cc'], |
450 ['exclude', '^base_paths_android.cc'], | 451 ['exclude', '^base_paths_android.cc'], |
451 ['exclude', '^debug/stack_trace_android.cc'], | 452 ['exclude', '^debug/stack_trace_android.cc'], |
452 ], | 453 ], |
453 }], | 454 }], |
454 [ 'OS != "mac"', { | 455 [ 'OS != "mac"', { |
455 'sources!': [ | 456 'sources!': [ |
456 'mac/scoped_aedesc.h' | 457 'mac/scoped_aedesc.h' |
457 ], | 458 ], |
458 }], | 459 }], |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
821 'third_party/xdg_mime/xdgmimemagic.c', | 822 'third_party/xdg_mime/xdgmimemagic.c', |
822 'third_party/xdg_mime/xdgmimemagic.h', | 823 'third_party/xdg_mime/xdgmimemagic.h', |
823 'third_party/xdg_mime/xdgmimeparent.c', | 824 'third_party/xdg_mime/xdgmimeparent.c', |
824 'third_party/xdg_mime/xdgmimeparent.h', | 825 'third_party/xdg_mime/xdgmimeparent.h', |
825 ], | 826 ], |
826 }, | 827 }, |
827 ], | 828 ], |
828 }], | 829 }], |
829 ], | 830 ], |
830 } | 831 } |
OLD | NEW |