| 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 "files/file_enumerator_posix.cc", | 735 "files/file_enumerator_posix.cc", |
| 736 "files/file_proxy.cc", | 736 "files/file_proxy.cc", |
| 737 "files/file_util.cc", | 737 "files/file_util.cc", |
| 738 "files/file_util_posix.cc", | 738 "files/file_util_posix.cc", |
| 739 "files/file_util_proxy.cc", | 739 "files/file_util_proxy.cc", |
| 740 "files/important_file_writer.cc", | 740 "files/important_file_writer.cc", |
| 741 "files/important_file_writer.h", | 741 "files/important_file_writer.h", |
| 742 "files/scoped_temp_dir.cc", | 742 "files/scoped_temp_dir.cc", |
| 743 "message_loop/message_pump_libevent.cc", | 743 "message_loop/message_pump_libevent.cc", |
| 744 "native_library_posix.cc", | 744 "native_library_posix.cc", |
| 745 "native_stack_sampler_posix.cc", |
| 745 "path_service.cc", | 746 "path_service.cc", |
| 746 "rand_util_posix.cc", | 747 "rand_util_posix.cc", |
| 747 "scoped_native_library.cc", | 748 "scoped_native_library.cc", |
| 748 "sync_socket_posix.cc", | 749 "sync_socket_posix.cc", |
| 749 "sys_info.cc", | 750 "sys_info.cc", |
| 750 "sys_info_posix.cc", | 751 "sys_info_posix.cc", |
| 751 ] | 752 ] |
| 752 } else { | 753 } else { |
| 753 # Remove NaCl stuff. | 754 # Remove NaCl stuff. |
| 754 sources -= [ | 755 sources -= [ |
| (...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1693 | 1694 |
| 1694 # GYP: //base.gyp:base_java_unittest_support | 1695 # GYP: //base.gyp:base_java_unittest_support |
| 1695 android_library("base_java_unittest_support") { | 1696 android_library("base_java_unittest_support") { |
| 1696 deps = [ | 1697 deps = [ |
| 1697 ":base_java", | 1698 ":base_java", |
| 1698 ] | 1699 ] |
| 1699 java_files = | 1700 java_files = |
| 1700 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1701 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1701 } | 1702 } |
| 1702 } | 1703 } |
| OLD | NEW |