| 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 2353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2364 "memory/memory_pressure_listener.h", | 2364 "memory/memory_pressure_listener.h", |
| 2365 ] | 2365 ] |
| 2366 } | 2366 } |
| 2367 | 2367 |
| 2368 # GYP: //base/base.gyp:base_build_config_gen | 2368 # GYP: //base/base.gyp:base_build_config_gen |
| 2369 java_cpp_template("base_build_config_gen") { | 2369 java_cpp_template("base_build_config_gen") { |
| 2370 sources = [ | 2370 sources = [ |
| 2371 "android/java/templates/BuildConfig.template", | 2371 "android/java/templates/BuildConfig.template", |
| 2372 ] | 2372 ] |
| 2373 package_name = "org/chromium/base" | 2373 package_name = "org/chromium/base" |
| 2374 |
| 2375 defines = [] |
| 2376 if (!is_java_debug) { |
| 2377 defines += [ "NDEBUG" ] |
| 2378 } |
| 2374 } | 2379 } |
| 2375 | 2380 |
| 2376 # GYP: //base/base.gyp:base_native_libraries_gen | 2381 # GYP: //base/base.gyp:base_native_libraries_gen |
| 2377 java_cpp_template("base_native_libraries_gen") { | 2382 java_cpp_template("base_native_libraries_gen") { |
| 2378 sources = [ | 2383 sources = [ |
| 2379 "android/java/templates/NativeLibraries.template", | 2384 "android/java/templates/NativeLibraries.template", |
| 2380 ] | 2385 ] |
| 2381 package_name = "org/chromium/base/library_loader" | 2386 package_name = "org/chromium/base/library_loader" |
| 2382 } | 2387 } |
| 2383 | 2388 |
| 2384 # GYP: //base.gyp:base_java_unittest_support | 2389 # GYP: //base.gyp:base_java_unittest_support |
| 2385 android_library("base_java_unittest_support") { | 2390 android_library("base_java_unittest_support") { |
| 2386 deps = [ | 2391 deps = [ |
| 2387 ":base_java", | 2392 ":base_java", |
| 2388 ] | 2393 ] |
| 2389 java_files = | 2394 java_files = |
| 2390 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2395 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2391 } | 2396 } |
| 2392 } | 2397 } |
| OLD | NEW |