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

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

Issue 1429193002: Add interfaces for most major Blimp net components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Import multiplexer changes from 1434533005 Created 5 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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 if (is_linux) { 47 if (is_linux) {
48 executable("blimp_engine_app") { 48 executable("blimp_engine_app") {
49 sources = [ 49 sources = [
50 "app/blimp_main.cc", 50 "app/blimp_main.cc",
51 ] 51 ]
52 52
53 deps = [ 53 deps = [
54 ":pak", 54 ":pak",
55 "//blimp/engine/app", 55 "//blimp/engine/app",
56 "//blimp/engine/net",
56 ] 57 ]
57 } 58 }
58 59
59 group("blimp_engine") { 60 group("blimp_engine") {
60 data_deps = [ 61 data_deps = [
61 ":blimp_engine_app", 62 ":blimp_engine_app",
62 ":pak", 63 ":pak",
63 "//sandbox/linux:chrome_sandbox", 64 "//sandbox/linux:chrome_sandbox",
64 65
65 # TODO(maniscalco): Get rid of osmesa once we no longer depend on X 66 # TODO(maniscalco): Get rid of osmesa once we no longer depend on X
(...skipping 29 matching lines...) Expand all
95 build_dir, 96 build_dir,
96 "--dockerfile", 97 "--dockerfile",
97 dockerfile, 98 dockerfile,
98 "--manifest", 99 "--manifest",
99 manifest, 100 manifest,
100 "--output", 101 "--output",
101 rebase_path(bundle), 102 rebase_path(bundle),
102 ] 103 ]
103 } 104 }
104 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698