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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1735783002: Add Android fonts to blimp engine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@khushal-fonts
Patch Set: Created 4 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 10
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 ":pak", 215 ":pak",
216 "//blimp/net:blimp_net", 216 "//blimp/net:blimp_net",
217 "//content/public/app:both", 217 "//content/public/app:both",
218 ] 218 ]
219 } 219 }
220 220
221 group("blimp_engine") { 221 group("blimp_engine") {
222 deps = [ 222 deps = [
223 ":blimp_engine_app", 223 ":blimp_engine_app",
224 ":pak", 224 ":pak",
225 "//blimp/fonts",
225 "//sandbox/linux:chrome_sandbox", 226 "//sandbox/linux:chrome_sandbox",
226 ] 227 ]
227 228
228 # List dependencies as both deps and data_deps to ensure changes trigger a 229 # List dependencies as both deps and data_deps to ensure changes trigger a
229 # rebuild and "gn desc ... runtime_deps" correctly prints the data_deps. 230 # rebuild and "gn desc ... runtime_deps" correctly prints the data_deps.
230 data_deps = deps 231 data_deps = deps
231 } 232 }
232 233
233 # Builds and bundles the engine into a tarball that can be used to build a 234 # Builds and bundles the engine into a tarball that can be used to build a
234 # Docker image. 235 # Docker image.
(...skipping 28 matching lines...) Expand all
263 _rebased_dockerfile, 264 _rebased_dockerfile,
264 "--startup-script", 265 "--startup-script",
265 _rebased_startup_script, 266 _rebased_startup_script,
266 "--manifest", 267 "--manifest",
267 _rebased_manifest, 268 _rebased_manifest,
268 "--output", 269 "--output",
269 rebase_path(_bundle), 270 rebase_path(_bundle),
270 ] 271 ]
271 } 272 }
272 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698