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

Side by Side Diff: mojo/BUILD.gn

Issue 549453004: GN: Fix compile errors with os==chromeos mojo/public build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@signed
Patch Set: Include new complete static library attribute on libmojo_sdk Created 6 years, 3 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 group("mojo") { 7 group("mojo") {
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 = [
11 ":tests", 11 ":tests",
12 "//mojo/apps/js:mojo_js", 12 "//mojo/apps/js:mojo_js",
13 "//mojo/common", 13 "//mojo/common",
14 "//mojo/examples", 14 "//mojo/examples",
15 "//mojo/public", 15 "//mojo/public",
16 "//mojo/services", 16 "//mojo/services",
17 "//mojo/shell:mojo_shell", 17 "//mojo/shell:mojo_shell",
18 ] 18 ]
19 19
20 if (is_linux) { 20 if (is_linux) {
21 deps += [ 21 deps += [
22 "//mojo/python", 22 "//mojo/python",
23 ] 23 ]
24 } 24 }
25
26 if (is_chromeos) {
27 deps += [
28 "//mojo/public:libmojo_sdk"
29 ]
30 }
25 } 31 }
26 32
27 group("tests") { 33 group("tests") {
28 testonly = true 34 testonly = true
29 deps = [ 35 deps = [
30 "//mojo/application_manager:mojo_application_manager_unittests", 36 "//mojo/application_manager:mojo_application_manager_unittests",
31 "//mojo/apps/js/test:mojo_apps_js_unittests", 37 "//mojo/apps/js/test:mojo_apps_js_unittests",
32 "//mojo/common:mojo_common_unittests", 38 "//mojo/common:mojo_common_unittests",
33 "//mojo/public/c/system/tests:perftests", 39 "//mojo/public/c/system/tests:perftests",
34 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", 40 "//mojo/public/cpp/application/tests:mojo_public_application_unittests",
(...skipping 26 matching lines...) Expand all
61 sources = [ 67 sources = [
62 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", 68 "android/javatests/src/org/chromium/mojo/MojoTestCase.java",
63 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" , 69 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java" ,
64 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", 70 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java",
65 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java", 71 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn droid.java",
66 ] 72 ]
67 73
68 jni_package = "mojo" 74 jni_package = "mojo"
69 } 75 }
70 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698