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

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

Issue 2483553002: Create cast_shell_lib target for cast_shell and browser tests. (Closed)
Patch Set: fixes android Created 4 years, 1 month 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 | « chromecast/BUILD.gn ('k') | chromecast/browser/BUILD.gn » ('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 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("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 6
7 # These targets shall only be referenced on Android builds. 7 # These targets shall only be referenced on Android builds.
8 assert(is_android) 8 assert(is_android)
9 9
10 # This source_set should only contain headers for internal code. These must be 10 # This source_set should only contain headers for internal code. These must be
(...skipping 10 matching lines...) Expand all
21 "//chromecast/app/android/cast_jni_loader.cc", 21 "//chromecast/app/android/cast_jni_loader.cc",
22 "cast_jni_registrar.cc", 22 "cast_jni_registrar.cc",
23 "cast_jni_registrar.h", 23 "cast_jni_registrar.h",
24 "cast_metrics_helper_android.cc", 24 "cast_metrics_helper_android.cc",
25 "cast_metrics_helper_android.h", 25 "cast_metrics_helper_android.h",
26 ] 26 ]
27 27
28 deps = [ 28 deps = [
29 ":platform_jni_loader", 29 ":platform_jni_loader",
30 "//base", 30 "//base",
31 "//chromecast:cast_shell_common", 31 "//chromecast:cast_shell_lib",
32 "//chromecast/app", 32 "//chromecast/app",
33 "//chromecast/app:cast_crash_client", 33 "//chromecast/app:cast_crash_client",
34 "//chromecast/base", 34 "//chromecast/base",
35 "//chromecast/base:cast_sys_info", 35 "//chromecast/base:cast_sys_info",
36 "//chromecast/base:jni_headers", 36 "//chromecast/base:jni_headers",
37 "//chromecast/base/metrics", 37 "//chromecast/base/metrics",
38 "//chromecast/browser", 38 "//chromecast/browser",
39 "//chromecast/browser:jni_headers", 39 "//chromecast/browser:jni_headers",
40 "//content/public/app:both", 40 "//content/public/app:both",
41 "//content/public/browser", 41 "//content/public/browser",
42 "//skia", 42 "//skia",
43 ] 43 ]
44 44
45 if (chromecast_branding != "public") { 45 if (chromecast_branding == "public") {
46 deps += [ "//chromecast/internal:cast_shell_android_internal" ]
47 } else {
48 sources += [ "platform_jni_loader_stub.cc" ] 46 sources += [ "platform_jni_loader_stub.cc" ]
49 } 47 }
50 } 48 }
OLDNEW
« no previous file with comments | « chromecast/BUILD.gn ('k') | chromecast/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698