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

Side by Side Diff: mojo/BUILD.gn

Issue 1285183008: Ozone integration. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 import("//build/module_args/mojo.gni") 6 import("//build/module_args/mojo.gni")
7 import("//mojo/public/mojo.gni") 7 import("//mojo/public/mojo.gni")
8 8
9 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. 9 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn.
10 group("mojo") { 10 group("mojo") {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 if (is_linux) { 43 if (is_linux) {
44 deps += [ "//mojo/python" ] 44 deps += [ "//mojo/python" ]
45 } 45 }
46 46
47 if (mojo_use_nacl) { 47 if (mojo_use_nacl) {
48 deps += [ 48 deps += [
49 "//mojo/nacl:mojo_nacl", 49 "//mojo/nacl:mojo_nacl",
50 "//mojo/nacl:mojo_nacl_tests", 50 "//mojo/nacl:mojo_nacl_tests",
51 ] 51 ]
52 } 52 }
53
54 if (use_ozone) {
jamesr 2015/08/18 20:11:33 do we need use_ozone to be toggleable within the m
spang 2015/08/18 20:25:31 Not yet, but with some work we could have an x11 p
55 deps += [
56 "//ui/ozone",
57 "//ui/ozone/demo",
58 ]
59 }
53 } 60 }
54 61
55 group("tests") { 62 group("tests") {
56 testonly = true 63 testonly = true
57 deps = [ 64 deps = [
58 "//mojo/common:mojo_common_unittests", 65 "//mojo/common:mojo_common_unittests",
59 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", 66 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests",
60 "//mojo/edk/system:tests", 67 "//mojo/edk/system:tests",
61 "//mojo/edk/test:public_tests", 68 "//mojo/edk/test:public_tests",
62 "//mojo/dart/embedder/test:dart_unittests", 69 "//mojo/dart/embedder/test:dart_unittests",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "//mojo/edk/js:tests", 105 "//mojo/edk/js:tests",
99 "//services/js:js_apptests", 106 "//services/js:js_apptests",
100 "//services/js:js_services_unittests", 107 "//services/js:js_services_unittests",
101 ] 108 ]
102 } 109 }
103 110
104 if (mojo_use_prebuilt_network_service) { 111 if (mojo_use_prebuilt_network_service) {
105 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] 112 deps += [ "//mojo/public/tools:copy_network_service_apptests" ]
106 } 113 }
107 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698