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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 "power_monitor/power_monitor_device_source_mac.mm", | 388 "power_monitor/power_monitor_device_source_mac.mm", |
389 "power_monitor/power_monitor_device_source_posix.cc", | 389 "power_monitor/power_monitor_device_source_posix.cc", |
390 "power_monitor/power_monitor_device_source_win.cc", | 390 "power_monitor/power_monitor_device_source_win.cc", |
391 "power_monitor/power_monitor_source.cc", | 391 "power_monitor/power_monitor_source.cc", |
392 "power_monitor/power_monitor_source.h", | 392 "power_monitor/power_monitor_source.h", |
393 "power_monitor/power_observer.h", | 393 "power_monitor/power_observer.h", |
394 "profiler/alternate_timer.cc", | 394 "profiler/alternate_timer.cc", |
395 "profiler/alternate_timer.h", | 395 "profiler/alternate_timer.h", |
396 "profiler/native_stack_sampler.cc", | 396 "profiler/native_stack_sampler.cc", |
397 "profiler/native_stack_sampler.h", | 397 "profiler/native_stack_sampler.h", |
| 398 "profiler/native_stack_sampler_mac.cc", |
398 "profiler/native_stack_sampler_posix.cc", | 399 "profiler/native_stack_sampler_posix.cc", |
399 "profiler/native_stack_sampler_win.cc", | 400 "profiler/native_stack_sampler_win.cc", |
400 "profiler/scoped_profile.cc", | 401 "profiler/scoped_profile.cc", |
401 "profiler/scoped_profile.h", | 402 "profiler/scoped_profile.h", |
402 "profiler/scoped_tracker.cc", | 403 "profiler/scoped_tracker.cc", |
403 "profiler/scoped_tracker.h", | 404 "profiler/scoped_tracker.h", |
404 "profiler/stack_sampling_profiler.cc", | 405 "profiler/stack_sampling_profiler.cc", |
405 "profiler/stack_sampling_profiler.h", | 406 "profiler/stack_sampling_profiler.h", |
406 "profiler/tracked_time.cc", | 407 "profiler/tracked_time.cc", |
407 "profiler/tracked_time.h", | 408 "profiler/tracked_time.h", |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 | 815 |
815 # Mac. | 816 # Mac. |
816 if (is_mac || is_ios) { | 817 if (is_mac || is_ios) { |
817 # Common Desktop / iOS excludes | 818 # Common Desktop / iOS excludes |
818 sources -= [ | 819 sources -= [ |
819 "native_library_posix.cc", | 820 "native_library_posix.cc", |
820 "strings/sys_string_conversions_posix.cc", | 821 "strings/sys_string_conversions_posix.cc", |
821 "threading/platform_thread_internal_posix.cc", | 822 "threading/platform_thread_internal_posix.cc", |
822 ] | 823 ] |
823 | 824 |
| 825 if (is_mac) { |
| 826 sources -= [ "profiler/native_stack_sampler_posix.cc" ] |
| 827 } |
| 828 |
824 if (is_asan) { | 829 if (is_asan) { |
825 # TODO(GYP) hook up asan on Mac. GYP has this extra dylib: | 830 # TODO(GYP) hook up asan on Mac. GYP has this extra dylib: |
826 #data += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ] | 831 #data += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ] |
827 } | 832 } |
828 | 833 |
829 if (is_ios) { | 834 if (is_ios) { |
830 sources -= [ | 835 sources -= [ |
831 "files/file_path_watcher_fsevents.cc", | 836 "files/file_path_watcher_fsevents.cc", |
832 "files/file_path_watcher_fsevents.h", | 837 "files/file_path_watcher_fsevents.h", |
833 ] | 838 ] |
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1686 | 1691 |
1687 # GYP: //base.gyp:base_java_unittest_support | 1692 # GYP: //base.gyp:base_java_unittest_support |
1688 android_library("base_java_unittest_support") { | 1693 android_library("base_java_unittest_support") { |
1689 deps = [ | 1694 deps = [ |
1690 ":base_java", | 1695 ":base_java", |
1691 ] | 1696 ] |
1692 java_files = | 1697 java_files = |
1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1698 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1694 } | 1699 } |
1695 } | 1700 } |
OLD | NEW |