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

Side by Side Diff: ui/ozone/BUILD.gn

Issue 750593003: Ozone X11 platform Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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("//ui/ozone/ozone.gni") 5 import("//ui/ozone/ozone.gni")
6 6
7 # The list of platforms that will be built. 7 # The list of platforms that will be built.
8 ozone_platforms = [] 8 ozone_platforms = []
9 9
10 # Extra dependencies to pull into ui/ozone for built platforms. 10 # Extra dependencies to pull into ui/ozone for built platforms.
11 ozone_platform_deps = [] 11 ozone_platform_deps = []
12 12
13 # Extra dependencies to pull into ozone_unittests for built platforms. 13 # Extra dependencies to pull into ozone_unittests for built platforms.
14 ozone_platform_test_deps = [] 14 ozone_platform_test_deps = []
15 15
16 if (ozone_platform_x11) {
17 ozone_platforms += [ "x11" ]
18 ozone_platform_deps += [ "platform/x11" ]
19 }
20
16 if (ozone_platform_egltest) { 21 if (ozone_platform_egltest) {
17 ozone_platforms += [ "egltest" ] 22 ozone_platforms += [ "egltest" ]
18 ozone_platform_deps += [ "platform/egltest" ] 23 ozone_platform_deps += [ "platform/egltest" ]
19 } 24 }
20 25
21 if (ozone_platform_test) { 26 if (ozone_platform_test) {
22 ozone_platforms += [ "test" ] 27 ozone_platforms += [ "test" ]
23 ozone_platform_deps += [ "platform/test" ] 28 ozone_platform_deps += [ "platform/test" ]
24 } 29 }
25 30
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 test("ozone_unittests") { 168 test("ozone_unittests") {
164 sources = [ 169 sources = [
165 "run_all_unittests.cc", 170 "run_all_unittests.cc",
166 ] 171 ]
167 172
168 deps = [ 173 deps = [
169 "//base/test:test_support", 174 "//base/test:test_support",
170 "//testing/gtest", 175 "//testing/gtest",
171 ] + ozone_platform_test_deps 176 ] + ozone_platform_test_deps
172 } 177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698