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

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

Issue 814543006: Move //mojo/{public, edk} underneath //third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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
« no previous file with comments | « mojo/nacl/BUILD.gn ('k') | mojo/public/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("mojo.gni")
6
7 group("public") {
8 # Meta-target, don't link into production code.
9 testonly = true
10 deps = [
11 ":libmojo_sdk",
12 ":sdk",
13 "cpp/application:standalone",
14 "cpp/bindings",
15 "cpp/environment:standalone",
16 "cpp/utility",
17 "interfaces/bindings/tests:test_interfaces",
18 "sky",
19 ]
20
21 if (is_linux) {
22 deps += [ "python" ]
23 }
24
25 if (is_android) {
26 deps += [
27 "java:system",
28 "java:bindings",
29 ]
30 }
31 }
32
33 group("sdk") {
34 deps = [
35 "c/system",
36 "cpp/application:standalone",
37 "cpp/bindings",
38 "cpp/environment:standalone",
39 "cpp/utility",
40 "interfaces/application",
41 "js",
42 ]
43 }
44
45 static_library("libmojo_sdk") {
46 complete_static_lib = true
47 deps = [
48 ":sdk",
49 ]
50 }
OLDNEW
« no previous file with comments | « mojo/nacl/BUILD.gn ('k') | mojo/public/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698