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

Side by Side Diff: mojo/public/BUILD.gn

Issue 1129063008: Move mojom definitions of URL{Request,Response} into SDK (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix up deps from other mojoms Created 5 years, 7 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 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("mojo.gni") 5 import("mojo.gni")
6 6
7 group("public") { 7 group("public") {
8 # Meta-target, don't link into production code. 8 # Meta-target, don't link into production code.
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
(...skipping 21 matching lines...) Expand all
32 32
33 group("sdk") { 33 group("sdk") {
34 deps = [ 34 deps = [
35 "c/system", 35 "c/system",
36 "cpp/application:standalone", 36 "cpp/application:standalone",
37 "cpp/bindings", 37 "cpp/bindings",
38 "cpp/environment:standalone", 38 "cpp/environment:standalone",
39 "cpp/utility", 39 "cpp/utility",
40 "interfaces/application", 40 "interfaces/application",
41 "interfaces/bindings", 41 "interfaces/bindings",
42 "interfaces/network",
42 "js", 43 "js",
43 ] 44 ]
44 } 45 }
45 46
46 static_library("libmojo_sdk") { 47 static_library("libmojo_sdk") {
47 complete_static_lib = true 48 complete_static_lib = true
48 deps = [ 49 deps = [
49 ":sdk", 50 ":sdk",
50 ] 51 ]
51 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698