Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: base/BUILD.gn

Issue 2146753002: Android: Remove unneeded RegisterNatives() calls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, more fixes Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 "android/path_utils.cc", 204 "android/path_utils.cc",
205 "android/path_utils.h", 205 "android/path_utils.h",
206 "android/record_histogram.cc", 206 "android/record_histogram.cc",
207 "android/record_histogram.h", 207 "android/record_histogram.h",
208 "android/record_user_action.cc", 208 "android/record_user_action.cc",
209 "android/record_user_action.h", 209 "android/record_user_action.h",
210 "android/scoped_java_ref.cc", 210 "android/scoped_java_ref.cc",
211 "android/scoped_java_ref.h", 211 "android/scoped_java_ref.h",
212 "android/sys_utils.cc", 212 "android/sys_utils.cc",
213 "android/sys_utils.h", 213 "android/sys_utils.h",
214 "android/thread_utils.h",
215 "android/trace_event_binding.cc", 214 "android/trace_event_binding.cc",
216 "android/trace_event_binding.h", 215 "android/trace_event_binding.h",
217 "at_exit.cc", 216 "at_exit.cc",
218 "at_exit.h", 217 "at_exit.h",
219 "atomic_ref_count.h", 218 "atomic_ref_count.h",
220 "atomic_sequence_num.h", 219 "atomic_sequence_num.h",
221 "atomicops.h", 220 "atomicops.h",
222 "atomicops_internals_portable.h", 221 "atomicops_internals_portable.h",
223 "atomicops_internals_x86_msvc.h", 222 "atomicops_internals_x86_msvc.h",
224 "auto_reset.h", 223 "auto_reset.h",
(...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after
2438 2437
2439 # GYP: //base.gyp:base_java_unittest_support 2438 # GYP: //base.gyp:base_java_unittest_support
2440 android_library("base_java_unittest_support") { 2439 android_library("base_java_unittest_support") {
2441 deps = [ 2440 deps = [
2442 ":base_java", 2441 ":base_java",
2443 ] 2442 ]
2444 java_files = 2443 java_files =
2445 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2444 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2446 } 2445 }
2447 } 2446 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698