| 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
| 6 # ====================================== | 6 # ====================================== |
| 7 # | 7 # |
| 8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
| 9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
| 10 # it from the sources list in that case | 10 # it from the sources list in that case |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 "process/process_iterator_linux.cc", | 1056 "process/process_iterator_linux.cc", |
| 1057 "process/process_metrics_linux.cc", | 1057 "process/process_metrics_linux.cc", |
| 1058 "sys_info_linux.cc", | 1058 "sys_info_linux.cc", |
| 1059 "trace_event/malloc_dump_provider.cc", | 1059 "trace_event/malloc_dump_provider.cc", |
| 1060 "trace_event/malloc_dump_provider.h", | 1060 "trace_event/malloc_dump_provider.h", |
| 1061 ] | 1061 ] |
| 1062 set_sources_assignment_filter(sources_assignment_filter) | 1062 set_sources_assignment_filter(sources_assignment_filter) |
| 1063 | 1063 |
| 1064 deps += [ | 1064 deps += [ |
| 1065 ":base_jni_headers", | 1065 ":base_jni_headers", |
| 1066 "//base/third_party/symbolize", |
| 1066 "//third_party/android_tools:cpu_features", | 1067 "//third_party/android_tools:cpu_features", |
| 1067 "//third_party/ashmem", | 1068 "//third_party/ashmem", |
| 1068 ] | 1069 ] |
| 1069 | 1070 |
| 1070 # Needs to be a public config so that dependent targets link against it as | 1071 # Needs to be a public config so that dependent targets link against it as |
| 1071 # well when doing a component build. | 1072 # well when doing a component build. |
| 1072 public_configs = [ ":android_system_libs" ] | 1073 public_configs = [ ":android_system_libs" ] |
| 1073 } | 1074 } |
| 1074 | 1075 |
| 1075 # Chromeos. | 1076 # Chromeos. |
| (...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2373 | 2374 |
| 2374 # GYP: //base.gyp:base_java_unittest_support | 2375 # GYP: //base.gyp:base_java_unittest_support |
| 2375 android_library("base_java_unittest_support") { | 2376 android_library("base_java_unittest_support") { |
| 2376 deps = [ | 2377 deps = [ |
| 2377 ":base_java", | 2378 ":base_java", |
| 2378 ] | 2379 ] |
| 2379 java_files = | 2380 java_files = |
| 2380 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2381 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2381 } | 2382 } |
| 2382 } | 2383 } |
| OLD | NEW |