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

Side by Side Diff: base/BUILD.gn

Issue 2169553002: Properly throw java exceptions from shouldOverrideUrlLoading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused file. 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "android/event_log.cc", 168 "android/event_log.cc",
169 "android/event_log.h", 169 "android/event_log.h",
170 "android/field_trial_list.cc", 170 "android/field_trial_list.cc",
171 "android/field_trial_list.h", 171 "android/field_trial_list.h",
172 "android/fifo_utils.cc", 172 "android/fifo_utils.cc",
173 "android/fifo_utils.h", 173 "android/fifo_utils.h",
174 "android/important_file_writer_android.cc", 174 "android/important_file_writer_android.cc",
175 "android/important_file_writer_android.h", 175 "android/important_file_writer_android.h",
176 "android/java_handler_thread.cc", 176 "android/java_handler_thread.cc",
177 "android/java_handler_thread.h", 177 "android/java_handler_thread.h",
178 "android/java_message_handler_factory.h",
178 "android/java_runtime.cc", 179 "android/java_runtime.cc",
179 "android/java_runtime.h", 180 "android/java_runtime.h",
180 "android/jni_android.cc", 181 "android/jni_android.cc",
181 "android/jni_android.h", 182 "android/jni_android.h",
182 "android/jni_array.cc", 183 "android/jni_array.cc",
183 "android/jni_array.h", 184 "android/jni_array.h",
184 "android/jni_registrar.cc", 185 "android/jni_registrar.cc",
185 "android/jni_registrar.h", 186 "android/jni_registrar.h",
186 "android/jni_string.cc", 187 "android/jni_string.cc",
187 "android/jni_string.h", 188 "android/jni_string.h",
(...skipping 2241 matching lines...) Expand 10 before | Expand all | Expand 10 after
2429 "android/java/templates/NativeLibraries.template", 2430 "android/java/templates/NativeLibraries.template",
2430 ] 2431 ]
2431 package_name = "org/chromium/base/library_loader" 2432 package_name = "org/chromium/base/library_loader"
2432 } 2433 }
2433 2434
2434 # GYP: //base.gyp:base_java_unittest_support 2435 # GYP: //base.gyp:base_java_unittest_support
2435 android_library("base_java_unittest_support") { 2436 android_library("base_java_unittest_support") {
2436 deps = [ 2437 deps = [
2437 ":base_java", 2438 ":base_java",
2438 ] 2439 ]
2439 java_files = 2440 java_files = [
2440 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2441 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2442 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2443 ]
2441 } 2444 }
2442 } 2445 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698