| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 # mojo_system_impl component. | 49 # mojo_system_impl component. |
| 50 visibility = [ ":embedder" ] | 50 visibility = [ ":embedder" ] |
| 51 | 51 |
| 52 mojo_edk_visibility = [ "mojo/edk/system/*" ] | 52 mojo_edk_visibility = [ "mojo/edk/system/*" ] |
| 53 | 53 |
| 54 sources = [ | 54 sources = [ |
| 55 "platform_channel_pair.cc", | 55 "platform_channel_pair.cc", |
| 56 "platform_channel_pair.h", | 56 "platform_channel_pair.h", |
| 57 "platform_channel_utils.cc", | 57 "platform_channel_utils.cc", |
| 58 "platform_channel_utils.h", | 58 "platform_channel_utils.h", |
| 59 "platform_handle.cc", | |
| 60 "platform_handle.h", | |
| 61 "platform_handle_utils.h", | 59 "platform_handle_utils.h", |
| 62 "platform_handle_utils_posix.cc", | 60 "platform_handle_utils_posix.cc", |
| 63 "platform_shared_buffer.h", | 61 "platform_shared_buffer.h", |
| 64 "platform_support.h", | 62 "platform_support.h", |
| 65 "scoped_platform_handle.h", | |
| 66 "simple_platform_shared_buffer.cc", | 63 "simple_platform_shared_buffer.cc", |
| 67 "simple_platform_shared_buffer.h", | 64 "simple_platform_shared_buffer.h", |
| 68 "simple_platform_support.cc", | 65 "simple_platform_support.cc", |
| 69 "simple_platform_support.h", | 66 "simple_platform_support.h", |
| 70 ] | 67 ] |
| 71 | 68 |
| 72 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] | 69 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] |
| 73 | 70 |
| 71 mojo_edk_public_deps = [ "mojo/edk/platform" ] |
| 72 |
| 74 deps = [ | 73 deps = [ |
| 75 "//base", | 74 "//base", |
| 76 ] | 75 ] |
| 77 | 76 |
| 78 if (is_android) { | 77 if (is_android) { |
| 79 deps += [ "//third_party/ashmem" ] | 78 deps += [ "//third_party/ashmem" ] |
| 80 } | 79 } |
| 81 | 80 |
| 82 mojo_edk_deps = [ "mojo/edk/util" ] | 81 mojo_edk_deps = [ "mojo/edk/util" ] |
| 83 } | 82 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 113 ] | 112 ] |
| 114 | 113 |
| 115 mojo_edk_deps = [ | 114 mojo_edk_deps = [ |
| 116 "mojo/edk/base_edk", | 115 "mojo/edk/base_edk", |
| 117 "mojo/edk/test:test_support", | 116 "mojo/edk/test:test_support", |
| 118 "mojo/edk/system", | 117 "mojo/edk/system", |
| 119 "mojo/edk/system/test", | 118 "mojo/edk/system/test", |
| 120 "mojo/edk/util", | 119 "mojo/edk/util", |
| 121 ] | 120 ] |
| 122 } | 121 } |
| OLD | NEW |