| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "//base/process", | 57 "//base/process", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 visibility = [ ":base" ] | 60 visibility = [ ":base" ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 component("base") { | 63 component("base") { |
| 64 sources = [ | 64 sources = [ |
| 65 "allocator/allocator_extension.cc", | 65 "allocator/allocator_extension.cc", |
| 66 "allocator/allocator_extension.h", | 66 "allocator/allocator_extension.h", |
| 67 "allocator/type_profiler_control.cc", | |
| 68 "allocator/type_profiler_control.h", | |
| 69 "android/animation_frame_time_histogram.cc", | 67 "android/animation_frame_time_histogram.cc", |
| 70 "android/animation_frame_time_histogram.h", | 68 "android/animation_frame_time_histogram.h", |
| 71 "android/apk_assets.cc", | 69 "android/apk_assets.cc", |
| 72 "android/apk_assets.h", | 70 "android/apk_assets.h", |
| 73 "android/application_status_listener.cc", | 71 "android/application_status_listener.cc", |
| 74 "android/application_status_listener.h", | 72 "android/application_status_listener.h", |
| 75 "android/base_jni_onload.cc", | 73 "android/base_jni_onload.cc", |
| 76 "android/base_jni_onload.h", | 74 "android/base_jni_onload.h", |
| 77 "android/base_jni_registrar.cc", | 75 "android/base_jni_registrar.cc", |
| 78 "android/base_jni_registrar.h", | 76 "android/base_jni_registrar.h", |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 # the linux file (which would otherwise be filtered out). | 719 # the linux file (which would otherwise be filtered out). |
| 722 set_sources_assignment_filter([]) | 720 set_sources_assignment_filter([]) |
| 723 sources += [ | 721 sources += [ |
| 724 "files/file_path_watcher_stub.cc", | 722 "files/file_path_watcher_stub.cc", |
| 725 "sync_socket_nacl.cc", | 723 "sync_socket_nacl.cc", |
| 726 "threading/platform_thread_linux.cc", | 724 "threading/platform_thread_linux.cc", |
| 727 ] | 725 ] |
| 728 set_sources_assignment_filter(sources_assignment_filter) | 726 set_sources_assignment_filter(sources_assignment_filter) |
| 729 | 727 |
| 730 sources -= [ | 728 sources -= [ |
| 731 "allocator/type_profiler_control.cc", | |
| 732 "allocator/type_profiler_control.h", | |
| 733 "async_socket_io_handler_posix.cc", | 729 "async_socket_io_handler_posix.cc", |
| 734 "cpu.cc", | 730 "cpu.cc", |
| 735 "files/file_enumerator_posix.cc", | 731 "files/file_enumerator_posix.cc", |
| 736 "files/file_proxy.cc", | 732 "files/file_proxy.cc", |
| 737 "files/file_util.cc", | 733 "files/file_util.cc", |
| 738 "files/file_util_posix.cc", | 734 "files/file_util_posix.cc", |
| 739 "files/file_util_proxy.cc", | 735 "files/file_util_proxy.cc", |
| 740 "files/important_file_writer.cc", | 736 "files/important_file_writer.cc", |
| 741 "files/important_file_writer.h", | 737 "files/important_file_writer.h", |
| 742 "files/scoped_temp_dir.cc", | 738 "files/scoped_temp_dir.cc", |
| (...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1693 | 1689 |
| 1694 # GYP: //base.gyp:base_java_unittest_support | 1690 # GYP: //base.gyp:base_java_unittest_support |
| 1695 android_library("base_java_unittest_support") { | 1691 android_library("base_java_unittest_support") { |
| 1696 deps = [ | 1692 deps = [ |
| 1697 ":base_java", | 1693 ":base_java", |
| 1698 ] | 1694 ] |
| 1699 java_files = | 1695 java_files = |
| 1700 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1696 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1701 } | 1697 } |
| 1702 } | 1698 } |
| OLD | NEW |