OLD | NEW |
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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
6 | 6 |
7 mojo_edk_source_set("embedder") { | 7 mojo_edk_source_set("embedder") { |
8 # This isn't really a standalone target; it must be linked into the | 8 # This isn't really a standalone target; it must be linked into the |
9 # mojo_system_impl component. | 9 # mojo_system_impl component. |
10 mojo_edk_visibility = [ "mojo/edk/system" ] | 10 mojo_edk_visibility = [ "mojo/edk/system" ] |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] | 89 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] |
90 | 90 |
91 deps = [ | 91 deps = [ |
92 "//base", | 92 "//base", |
93 ] | 93 ] |
94 | 94 |
95 if (is_android) { | 95 if (is_android) { |
96 deps += [ "//third_party/ashmem" ] | 96 deps += [ "//third_party/ashmem" ] |
97 } | 97 } |
| 98 |
| 99 mojo_edk_deps = [ "mojo/edk/util" ] |
98 } | 100 } |
99 | 101 |
100 mojo_edk_source_set("delegates") { | 102 mojo_edk_source_set("delegates") { |
101 # This isn't really a standalone target; it must be linked into the | 103 # This isn't really a standalone target; it must be linked into the |
102 # mojo_system_impl component. | 104 # mojo_system_impl component. |
103 visibility = [ ":embedder" ] | 105 visibility = [ ":embedder" ] |
104 | 106 |
105 mojo_edk_visibility = [ "mojo/edk/system" ] | 107 mojo_edk_visibility = [ "mojo/edk/system" ] |
106 | 108 |
107 sources = [ | 109 sources = [ |
(...skipping 24 matching lines...) Expand all Loading... |
132 deps = [ | 134 deps = [ |
133 "//base", | 135 "//base", |
134 "//base/test:test_support", | 136 "//base/test:test_support", |
135 "//testing/gtest", | 137 "//testing/gtest", |
136 ] | 138 ] |
137 | 139 |
138 mojo_edk_deps = [ | 140 mojo_edk_deps = [ |
139 "mojo/edk/test:test_support", | 141 "mojo/edk/test:test_support", |
140 "mojo/edk/system", | 142 "mojo/edk/system", |
141 "mojo/edk/system:test_utils", | 143 "mojo/edk/system:test_utils", |
| 144 "mojo/edk/util", |
142 ] | 145 ] |
143 } | 146 } |
OLD | NEW |