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

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

Issue 1528233002: Make base a static ibrary (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « base/trace_event/BUILD.gn ('k') | sandbox/win/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 group("public") { 5 group("public") {
6 # Meta-target, don't link into production code. 6 # Meta-target, don't link into production code.
7 testonly = true 7 testonly = true
8 deps = [ 8 deps = [
9 ":libmojo_sdk",
10 ":sdk", 9 ":sdk",
11 "cpp/bindings", 10 "cpp/bindings",
12 "cpp/environment:standalone", 11 "cpp/environment:standalone",
13 "cpp/utility", 12 "cpp/utility",
14 "interfaces/bindings/tests:test_interfaces", 13 "interfaces/bindings/tests:test_interfaces",
15 ] 14 ]
16 15
17 if (is_android) { 16 if (is_android) {
18 deps += [ 17 deps += [
19 "java:bindings", 18 "java:bindings",
20 "java:system", 19 "java:system",
21 ] 20 ]
22 } 21 }
23 } 22 }
24 23
25 group("sdk") { 24 group("sdk") {
26 deps = [ 25 deps = [
27 "c/system", 26 "c/system",
28 "cpp/bindings", 27 "cpp/bindings",
29 "cpp/environment:standalone", 28 "cpp/environment:standalone",
30 "cpp/utility", 29 "cpp/utility",
31 "interfaces/bindings", 30 "interfaces/bindings",
32 "js", 31 "js",
33 ] 32 ]
34 } 33 }
35
36 static_library("libmojo_sdk") {
37 complete_static_lib = true
38 deps = [
39 ":sdk",
40 ]
41 }
OLDNEW
« no previous file with comments | « base/trace_event/BUILD.gn ('k') | sandbox/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698