OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 component("base") { | 7 component("base") { |
8 sources = [ | 8 sources = [ |
9 "third_party/dmg_fp/dmg_fp.h", | 9 "third_party/dmg_fp/dmg_fp.h", |
10 "third_party/dmg_fp/g_fmt.cc", | 10 "third_party/dmg_fp/g_fmt.cc", |
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 "win/startup_information.cc", | 674 "win/startup_information.cc", |
675 "win/startup_information.h", | 675 "win/startup_information.h", |
676 "win/win_util.cc", | 676 "win/win_util.cc", |
677 "win/win_util.h", | 677 "win/win_util.h", |
678 "win/windows_version.cc", | 678 "win/windows_version.cc", |
679 "win/windows_version.h", | 679 "win/windows_version.h", |
680 "win/wrapped_window_proc.cc", | 680 "win/wrapped_window_proc.cc", |
681 "win/wrapped_window_proc.h", | 681 "win/wrapped_window_proc.h", |
682 ] | 682 ] |
683 | 683 |
| 684 if (is_android) { |
| 685 sources -= [ |
| 686 "debug/stack_trace_posix.cc", |
| 687 ] |
| 688 |
| 689 # TODO(dpranke): crbug.com/360936. |
| 690 # These are disabled until we have JNI support on Android. |
| 691 sources -= [ |
| 692 "android/activity_status.cc", |
| 693 "android/base_jni_registrar.cc", |
| 694 "android/base_jni_registrar.h", |
| 695 "android/build_info.cc", |
| 696 "android/build_info.h", |
| 697 "android/cpu_features.cc", |
| 698 "android/important_file_writer_android.cc", |
| 699 "android/memory_pressure_listener_android.cc", |
| 700 "android/path_service_android.cc", |
| 701 "android/path_utils.cc", |
| 702 "android/sys_utils.cc", |
| 703 "android/trace_event_binding.cc", |
| 704 "message_loop/message_pump_android.cc", |
| 705 "power_monitor/power_monitor_device_source_android.cc", |
| 706 "threading/platform_thread_android.cc", |
| 707 ] |
| 708 } |
| 709 |
684 # TODO(brettw) I don't understand the conditions this file is used. | 710 # TODO(brettw) I don't understand the conditions this file is used. |
685 sources -= [ "files/file_path_watcher_stub.cc" ] | 711 sources -= [ "files/file_path_watcher_stub.cc" ] |
686 | 712 |
687 sources -= [ | 713 sources -= [ |
688 "process/process_handle_freebsd.cc", | 714 "process/process_handle_freebsd.cc", |
689 "process/process_handle_openbsd.cc", | 715 "process/process_handle_openbsd.cc", |
690 "process/process_iterator_freebsd.cc", | 716 "process/process_iterator_freebsd.cc", |
691 "process/process_iterator_openbsd.cc", | 717 "process/process_iterator_openbsd.cc", |
692 "process/process_metrics_freebsd.cc", | 718 "process/process_metrics_freebsd.cc", |
693 "process/process_metrics_openbsd.cc", | 719 "process/process_metrics_openbsd.cc", |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
894 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 920 # # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
895 # 'msvs_disabled_warnings': [ | 921 # 'msvs_disabled_warnings': [ |
896 # 4267, | 922 # 4267, |
897 # ], | 923 # ], |
898 # }], | 924 # }], |
899 #], | 925 #], |
900 #'variables': { | 926 #'variables': { |
901 # 'optimize': 'max', | 927 # 'optimize': 'max', |
902 #}, | 928 #}, |
903 } | 929 } |
OLD | NEW |