| 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("headers") { | 5 source_set("headers") { |
| 6 sources = [ | 6 sources = [ |
| 7 "configuration.h", | 7 "configuration.h", |
| 8 "embedder.h", | 8 "embedder.h", |
| 9 "embedder_internal.h", | 9 "embedder_internal.h", |
| 10 "named_platform_channel_pair.h", |
| 10 "platform_channel_pair.h", | 11 "platform_channel_pair.h", |
| 11 "platform_handle.h", | 12 "platform_handle.h", |
| 12 "platform_handle_utils.h", | 13 "platform_handle_utils.h", |
| 13 "process_delegate.h", | 14 "process_delegate.h", |
| 14 "scoped_platform_handle.h", | 15 "scoped_platform_handle.h", |
| 15 ] | 16 ] |
| 16 | 17 |
| 17 public_deps = [ | 18 public_deps = [ |
| 18 "//base", | 19 "//base", |
| 19 "//mojo/public/cpp/system", | 20 "//mojo/public/cpp/system", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 66 |
| 66 source_set("platform") { | 67 source_set("platform") { |
| 67 # This isn't really a standalone target; it must be linked into the | 68 # This isn't really a standalone target; it must be linked into the |
| 68 # mojo_system_impl component. | 69 # mojo_system_impl component. |
| 69 visibility = [ | 70 visibility = [ |
| 70 ":embedder", | 71 ":embedder", |
| 71 "//mojo/edk/system", | 72 "//mojo/edk/system", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 sources = [ | 75 sources = [ |
| 76 "named_platform_channel_pair.h", |
| 77 "named_platform_channel_pair_win.cc", |
| 75 "platform_channel_pair.cc", | 78 "platform_channel_pair.cc", |
| 76 "platform_channel_pair.h", | 79 "platform_channel_pair.h", |
| 77 "platform_channel_pair_posix.cc", | 80 "platform_channel_pair_posix.cc", |
| 78 "platform_channel_pair_win.cc", | 81 "platform_channel_pair_win.cc", |
| 79 "platform_channel_utils_posix.cc", | 82 "platform_channel_utils_posix.cc", |
| 80 "platform_channel_utils_posix.h", | 83 "platform_channel_utils_posix.h", |
| 81 "platform_handle.cc", | 84 "platform_handle.cc", |
| 82 "platform_handle.h", | 85 "platform_handle.h", |
| 83 "platform_handle_utils.h", | 86 "platform_handle_utils.h", |
| 84 "platform_handle_utils_posix.cc", | 87 "platform_handle_utils_posix.cc", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 144 |
| 142 deps = [ | 145 deps = [ |
| 143 "//base", | 146 "//base", |
| 144 "//base/test:test_support", | 147 "//base/test:test_support", |
| 145 "//mojo/edk/system", | 148 "//mojo/edk/system", |
| 146 "//mojo/edk/system:test_utils", | 149 "//mojo/edk/system:test_utils", |
| 147 "//mojo/edk/test:test_support", | 150 "//mojo/edk/test:test_support", |
| 148 "//testing/gtest", | 151 "//testing/gtest", |
| 149 ] | 152 ] |
| 150 } | 153 } |
| OLD | NEW |