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

Side by Side Diff: base/BUILD.gn

Issue 2822343002: [Android] Rename package_name in java_cpp_template to package_path. (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « no previous file | build/config/android/rules.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2646 matching lines...) Expand 10 before | Expand all | Expand 10 after
2657 "android/library_loader/library_load_from_apk_status_codes.h", 2657 "android/library_loader/library_load_from_apk_status_codes.h",
2658 "android/library_loader/library_loader_hooks.h", 2658 "android/library_loader/library_loader_hooks.h",
2659 "memory/memory_pressure_listener.h", 2659 "memory/memory_pressure_listener.h",
2660 ] 2660 ]
2661 } 2661 }
2662 2662
2663 java_cpp_template("base_build_config_gen") { 2663 java_cpp_template("base_build_config_gen") {
2664 sources = [ 2664 sources = [
2665 "android/java/templates/BuildConfig.template", 2665 "android/java/templates/BuildConfig.template",
2666 ] 2666 ]
2667 package_name = "org/chromium/base" 2667 package_path = "org/chromium/base"
2668 2668
2669 defines = [] 2669 defines = []
2670 if (is_java_debug || dcheck_always_on) { 2670 if (is_java_debug || dcheck_always_on) {
2671 defines += [ "_DCHECK_IS_ON" ] 2671 defines += [ "_DCHECK_IS_ON" ]
2672 } 2672 }
2673 } 2673 }
2674 2674
2675 java_cpp_template("base_native_libraries_gen") { 2675 java_cpp_template("base_native_libraries_gen") {
2676 sources = [ 2676 sources = [
2677 "android/java/templates/NativeLibraries.template", 2677 "android/java/templates/NativeLibraries.template",
2678 ] 2678 ]
2679 package_name = "org/chromium/base/library_loader" 2679 package_path = "org/chromium/base/library_loader"
2680 } 2680 }
2681 2681
2682 android_library("base_java_unittest_support") { 2682 android_library("base_java_unittest_support") {
2683 testonly = true 2683 testonly = true
2684 deps = [ 2684 deps = [
2685 ":base_java", 2685 ":base_java",
2686 ] 2686 ]
2687 java_files = [ 2687 java_files = [
2688 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2688 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2689 "test/android/java/src/org/chromium/base/JavaHandlerThreadTest.java", 2689 "test/android/java/src/org/chromium/base/JavaHandlerThreadTest.java",
2690 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2690 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2691 ] 2691 ]
2692 } 2692 }
2693 } 2693 }
2694 2694
2695 fuzzer_test("base_json_correctness_fuzzer") { 2695 fuzzer_test("base_json_correctness_fuzzer") {
2696 sources = [ 2696 sources = [
2697 "json/correctness_fuzzer.cc", 2697 "json/correctness_fuzzer.cc",
2698 ] 2698 ]
2699 deps = [ 2699 deps = [
2700 ":base", 2700 ":base",
2701 ] 2701 ]
2702 } 2702 }
OLDNEW
« no previous file with comments | « no previous file | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698