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

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

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 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 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/public/mojo.gni") 5 import("//mojo/public/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 23 matching lines...) Expand all
34 34
35 group("sdk") { 35 group("sdk") {
36 deps = [ 36 deps = [
37 "c/system", 37 "c/system",
38 "cpp/bindings", 38 "cpp/bindings",
39 "cpp/environment:standalone", 39 "cpp/environment:standalone",
40 "cpp/utility", 40 "cpp/utility",
41 "interfaces/bindings", 41 "interfaces/bindings",
42 "js", 42 "js",
43 ] 43 ]
44
45 if (mojo_use_application_in_sdk) {
46 deps += [
47 "cpp/application:standalone",
48 "interfaces/application",
49 ]
50 }
51
52 if (mojo_use_network_in_sdk) {
53 deps += [ "interfaces/network" ]
54 }
55 } 44 }
56 45
57 static_library("libmojo_sdk") { 46 static_library("libmojo_sdk") {
58 complete_static_lib = true 47 complete_static_lib = true
59 deps = [ 48 deps = [
60 ":sdk", 49 ":sdk",
61 ] 50 ]
62 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698