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

Side by Side Diff: components/cronet/android/BUILD.gn

Issue 1533343002: GN: Fix cronet compile with enable_incremental_javac = true (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//build/util/version.gni") 6 import("//build/util/version.gni")
7 import("//chrome/version.gni") 7 import("//chrome/version.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 assert(!is_component_build, "Cronet requires static library build.") 10 assert(!is_component_build, "Cronet requires static library build.")
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ] 49 ]
50 } 50 }
51 51
52 java_cpp_template("load_states_list") { 52 java_cpp_template("load_states_list") {
53 sources = [ 53 sources = [
54 "java/src/org/chromium/net/LoadState.template", 54 "java/src/org/chromium/net/LoadState.template",
55 ] 55 ]
56 inputs = [ 56 inputs = [
57 "//net/base/load_states_list.h", 57 "//net/base/load_states_list.h",
58 ] 58 ]
59 package_name = "org/chromium/cronet" 59 package_name = "org/chromium/net"
60 } 60 }
61 61
62 _generated_version_java_dir = "$target_gen_dir/templates/cronet_version_java" 62 _generated_version_java_dir = "$target_gen_dir/templates/cronet_version_java"
63 _generated_version_java = 63 _generated_version_java =
64 "$_generated_version_java_dir/org/chromium/cronet/Version.java" 64 "$_generated_version_java_dir/org/chromium/net/Version.java"
65 65
66 process_version("cronet_version_java") { 66 process_version("cronet_version_java") {
67 template_file = "java/src/org/chromium/net/Version.template" 67 template_file = "java/src/org/chromium/net/Version.template"
68 output = _generated_version_java 68 output = _generated_version_java
69 } 69 }
70 70
71 zip("cronet_version_srcjar") { 71 zip("cronet_version_srcjar") {
72 inputs = [ 72 inputs = [
73 _generated_version_java, 73 _generated_version_java,
74 ] 74 ]
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 454
455 deps = [ 455 deps = [
456 ":cronet_static", 456 ":cronet_static",
457 "//base", 457 "//base",
458 "//base/test:test_support", 458 "//base/test:test_support",
459 "//components/metrics", 459 "//components/metrics",
460 "//net", 460 "//net",
461 "//testing/gtest", 461 "//testing/gtest",
462 ] 462 ]
463 } 463 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698