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

Side by Side Diff: sky/shell/BUILD.gn

Issue 930673002: Add an implementation of url_loader.mojom using OkHttp (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update copyright Created 5 years, 10 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
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 assert(is_android) 5 assert(is_android)
6 6
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 9
10 group("shell") { 10 group("shell") {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "apk/src/org/domokit/sky/shell/SkyShellApplication.java", 78 "apk/src/org/domokit/sky/shell/SkyShellApplication.java",
79 ] 79 ]
80 80
81 deps = [ 81 deps = [
82 "//base:base_java", 82 "//base:base_java",
83 "//mojo/android:system_java", 83 "//mojo/android:system_java",
84 "//mojo/public/interfaces/application:application_java", 84 "//mojo/public/interfaces/application:application_java",
85 "//mojo/public/java:bindings", 85 "//mojo/public/java:bindings",
86 "//mojo/public/java:system", 86 "//mojo/public/java:system",
87 "//mojo/services/network/public/interfaces:interfaces_java", 87 "//mojo/services/network/public/interfaces:interfaces_java",
88 "//sky/services/oknet",
88 ] 89 ]
89 } 90 }
90 91
91 sky_shell_assets_dir = "$root_build_dir/sky_shell/assets" 92 sky_shell_assets_dir = "$root_build_dir/sky_shell/assets"
92 93
93 android_resources("resources") { 94 android_resources("resources") {
94 resource_dirs = [ "apk/res" ] 95 resource_dirs = [ "apk/res" ]
95 custom_package = "org.domokit.sky.shell" 96 custom_package = "org.domokit.sky.shell"
96 } 97 }
97 98
(...skipping 17 matching lines...) Expand all
115 asset_location = sky_shell_assets_dir 116 asset_location = sky_shell_assets_dir
116 117
117 deps = [ 118 deps = [
118 "//base:base_java", 119 "//base:base_java",
119 ":assets", 120 ":assets",
120 ":java", 121 ":java",
121 ":resources", 122 ":resources",
122 ":sky_shell", 123 ":sky_shell",
123 ] 124 ]
124 } 125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698