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

Side by Side Diff: chrome/android/BUILD.gn

Issue 802343003: Upstream DocumentTabModelImpl and related classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved package, added OWNERS Created 6 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 import("//chrome/version.gni") 8 import("//chrome/version.gni")
9 import("//third_party/icu/config.gni") 9 import("//third_party/icu/config.gni")
10 import("channel.gni") 10 import("channel.gni")
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "//components/bookmarks/common/android:bookmarks_java", 82 "//components/bookmarks/common/android:bookmarks_java",
83 "//components/dom_distiller/android:dom_distiller_core_java", 83 "//components/dom_distiller/android:dom_distiller_core_java",
84 "//components/gcm_driver/android:gcm_driver_java", 84 "//components/gcm_driver/android:gcm_driver_java",
85 "//components/invalidation:java", 85 "//components/invalidation:java",
86 "//components/navigation_interception/android:navigation_interception_java", 86 "//components/navigation_interception/android:navigation_interception_java",
87 "//components/variations/android:variations_java", 87 "//components/variations/android:variations_java",
88 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va", 88 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va",
89 "//content/public/android:content_java", 89 "//content/public/android:content_java",
90 "//printing:printing_java", 90 "//printing:printing_java",
91 "//sync/android:sync_java", 91 "//sync/android:sync_java",
92 "//third_party/android_protobuf:protobuf_nano_javalib",
Nico 2014/12/16 19:52:29 This doesn't look right to me; the gyp version doe
gone 2014/12/16 19:59:00 Tried to do it without this line, but PS2 failed t
cjhopman 2014/12/16 21:34:00 In GN, the classpath for a java/android library on
cjhopman 2014/12/16 21:34:00 Also, GN will probably change to use "all" transit
92 "//third_party/android_tools:android_support_v13_java", 93 "//third_party/android_tools:android_support_v13_java",
93 "//third_party/android_tools:android_support_v7_appcompat_java", 94 "//third_party/android_tools:android_support_v7_appcompat_java",
94 "//third_party/cacheinvalidation:cacheinvalidation_javalib", 95 "//third_party/cacheinvalidation:cacheinvalidation_javalib",
95 "//third_party/cacheinvalidation:cacheinvalidation_proto_java", 96 "//third_party/cacheinvalidation:cacheinvalidation_proto_java",
96 "//third_party/jsr-305:jsr_305_javalib", 97 "//third_party/jsr-305:jsr_305_javalib",
97 "//third_party/libaddressinput:android_addressinput_widget_java", 98 "//third_party/libaddressinput:android_addressinput_widget_java",
98 "//third_party/libaddressinput:android_addressinput_widget_resources", 99 "//third_party/libaddressinput:android_addressinput_widget_resources",
99 "//ui/android:ui_java", 100 "//ui/android:ui_java",
100 "//ui/android:ui_java_resources", 101 "//ui/android:ui_java_resources",
101 ] 102 ]
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 ] 511 ]
511 } 512 }
512 513
513 zip("chrome_version_srcjar") { 514 zip("chrome_version_srcjar") {
514 inputs = [ 515 inputs = [
515 chrome_version_java_file, 516 chrome_version_java_file,
516 ] 517 ]
517 output = "$target_gen_dir/$target_name.srcjar" 518 output = "$target_gen_dir/$target_name.srcjar"
518 base_dir = chrome_version_java_dir 519 base_dir = chrome_version_java_dir
519 } 520 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698