| 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 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "debug/trace_event_memory.h", | 176 "debug/trace_event_memory.h", |
| 177 "debug/trace_event_synthetic_delay.cc", | 177 "debug/trace_event_synthetic_delay.cc", |
| 178 "debug/trace_event_synthetic_delay.h", | 178 "debug/trace_event_synthetic_delay.h", |
| 179 "debug/trace_event_system_stats_monitor.cc", | 179 "debug/trace_event_system_stats_monitor.cc", |
| 180 "debug/trace_event_system_stats_monitor.h", | 180 "debug/trace_event_system_stats_monitor.h", |
| 181 "debug/trace_event_win.cc", | 181 "debug/trace_event_win.cc", |
| 182 "deferred_sequenced_task_runner.cc", | 182 "deferred_sequenced_task_runner.cc", |
| 183 "deferred_sequenced_task_runner.h", | 183 "deferred_sequenced_task_runner.h", |
| 184 "environment.cc", | 184 "environment.cc", |
| 185 "environment.h", | 185 "environment.h", |
| 186 "event_recorder.h", | |
| 187 "event_recorder_stubs.cc", | |
| 188 "event_recorder_win.cc", | |
| 189 "file_descriptor_posix.h", | 186 "file_descriptor_posix.h", |
| 190 "file_version_info.h", | 187 "file_version_info.h", |
| 191 "file_version_info_mac.h", | 188 "file_version_info_mac.h", |
| 192 "file_version_info_mac.mm", | 189 "file_version_info_mac.mm", |
| 193 "file_version_info_win.cc", | 190 "file_version_info_win.cc", |
| 194 "file_version_info_win.h", | 191 "file_version_info_win.h", |
| 195 "files/dir_reader_fallback.h", | 192 "files/dir_reader_fallback.h", |
| 196 "files/dir_reader_linux.h", | 193 "files/dir_reader_linux.h", |
| 197 "files/dir_reader_posix.h", | 194 "files/dir_reader_posix.h", |
| 198 "files/file.cc", | 195 "files/file.cc", |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 "os_compat_nacl.cc", | 846 "os_compat_nacl.cc", |
| 850 "os_compat_nacl.h", | 847 "os_compat_nacl.h", |
| 851 "rand_util_nacl.cc", | 848 "rand_util_nacl.cc", |
| 852 "memory/shared_memory_nacl.cc", | 849 "memory/shared_memory_nacl.cc", |
| 853 ] | 850 ] |
| 854 } | 851 } |
| 855 | 852 |
| 856 # Windows. | 853 # Windows. |
| 857 if (is_win) { | 854 if (is_win) { |
| 858 sources -= [ | 855 sources -= [ |
| 859 "event_recorder_stubs.cc", | |
| 860 "message_loop/message_pump_libevent.cc", | 856 "message_loop/message_pump_libevent.cc", |
| 861 "strings/string16.cc", | 857 "strings/string16.cc", |
| 862 | 858 |
| 863 # Not using sha1_win.cc because it may have caused a | 859 # Not using sha1_win.cc because it may have caused a |
| 864 # regression to page cycler moz. | 860 # regression to page cycler moz. |
| 865 "sha1_win.cc", | 861 "sha1_win.cc", |
| 866 ] | 862 ] |
| 867 | 863 |
| 868 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 864 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 869 cflags = [ "/wd4267" ] | 865 cflags = [ "/wd4267" ] |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1530 # GYP: //base.gyp:base_unittests_apk | 1526 # GYP: //base.gyp:base_unittests_apk |
| 1531 unittest_apk("base_unittests_apk") { | 1527 unittest_apk("base_unittests_apk") { |
| 1532 deps = [ | 1528 deps = [ |
| 1533 ":base_java", | 1529 ":base_java", |
| 1534 ":base_java_unittest_support", | 1530 ":base_java_unittest_support", |
| 1535 ":base_unittests", | 1531 ":base_unittests", |
| 1536 ] | 1532 ] |
| 1537 unittests_dep = ":base_unittests" | 1533 unittests_dep = ":base_unittests" |
| 1538 } | 1534 } |
| 1539 } | 1535 } |
| OLD | NEW |