| 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 source_set("embedder") { | 5 source_set("embedder") { |
| 6 # This isn't really a standalone target; it must be linked into the | 6 # This isn't really a standalone target; it must be linked into the |
| 7 # mojo_system_impl component. | 7 # mojo_system_impl component. |
| 8 visibility = [ | 8 visibility = [ |
| 9 "//mojo/edk/system", | 9 "//mojo/edk/system", |
| 10 "//components/nacl:nacl", | 10 "//components/nacl:nacl", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 configs += [ "//mojo/edk/system:system_config" ] | 33 configs += [ "//mojo/edk/system:system_config" ] |
| 34 | 34 |
| 35 public_deps = [ | 35 public_deps = [ |
| 36 ":delegates", | 36 ":delegates", |
| 37 ":platform", | 37 ":platform", |
| 38 "//mojo/public/cpp/system", | 38 "//mojo/public/cpp/system", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//crypto", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| 45 | 46 |
| 46 source_set("platform") { | 47 source_set("platform") { |
| 47 # This isn't really a standalone target; it must be linked into the | 48 # This isn't really a standalone target; it must be linked into the |
| 48 # mojo_system_impl component. | 49 # mojo_system_impl component. |
| 49 visibility = [ | 50 visibility = [ |
| 50 ":embedder", | 51 ":embedder", |
| 51 "//mojo/edk/system", | 52 "//mojo/edk/system", |
| 52 ] | 53 ] |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "//mojo/edk/system:test_utils", | 139 "//mojo/edk/system:test_utils", |
| 139 "//mojo/edk/test:test_support", | 140 "//mojo/edk/test:test_support", |
| 140 "//testing/gtest", | 141 "//testing/gtest", |
| 141 "//third_party/mojo/src/mojo/edk/system", | 142 "//third_party/mojo/src/mojo/edk/system", |
| 142 | 143 |
| 143 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 144 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
| 144 # declared in third party only for now. | 145 # declared in third party only for now. |
| 145 "//third_party/mojo/src/mojo/edk/system", | 146 "//third_party/mojo/src/mojo/edk/system", |
| 146 ] | 147 ] |
| 147 } | 148 } |
| OLD | NEW |