| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 | 6 |
| 7 source_set("headers") { | 7 source_set("headers") { |
| 8 sources = [ | 8 sources = [ |
| 9 "configuration.h", | 9 "configuration.h", |
| 10 "embedder.h", | 10 "embedder.h", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 sources = [ | 79 sources = [ |
| 80 "named_platform_channel_pair.h", | 80 "named_platform_channel_pair.h", |
| 81 "named_platform_channel_pair_win.cc", | 81 "named_platform_channel_pair_win.cc", |
| 82 "named_platform_handle.h", | 82 "named_platform_handle.h", |
| 83 "named_platform_handle_utils.h", | 83 "named_platform_handle_utils.h", |
| 84 "named_platform_handle_utils_win.cc", | 84 "named_platform_handle_utils_win.cc", |
| 85 "platform_channel_pair.cc", | 85 "platform_channel_pair.cc", |
| 86 "platform_channel_pair.h", | 86 "platform_channel_pair.h", |
| 87 "platform_channel_pair_android.cc", |
| 87 "platform_channel_pair_posix.cc", | 88 "platform_channel_pair_posix.cc", |
| 88 "platform_channel_pair_win.cc", | 89 "platform_channel_pair_win.cc", |
| 89 "platform_channel_utils_posix.cc", | 90 "platform_channel_utils_posix.cc", |
| 90 "platform_channel_utils_posix.h", | 91 "platform_channel_utils_posix.h", |
| 91 "platform_handle.cc", | 92 "platform_handle.cc", |
| 92 "platform_handle.h", | 93 "platform_handle.h", |
| 93 "platform_handle_utils.h", | 94 "platform_handle_utils.h", |
| 94 "platform_handle_utils_posix.cc", | 95 "platform_handle_utils_posix.cc", |
| 95 "platform_handle_utils_win.cc", | 96 "platform_handle_utils_win.cc", |
| 96 "platform_handle_vector.h", | 97 "platform_handle_vector.h", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 155 |
| 155 deps = [ | 156 deps = [ |
| 156 "//base", | 157 "//base", |
| 157 "//base/test:test_support", | 158 "//base/test:test_support", |
| 158 "//mojo/edk/system", | 159 "//mojo/edk/system", |
| 159 "//mojo/edk/system:test_utils", | 160 "//mojo/edk/system:test_utils", |
| 160 "//mojo/edk/test:test_support", | 161 "//mojo/edk/test:test_support", |
| 161 "//testing/gtest", | 162 "//testing/gtest", |
| 162 ] | 163 ] |
| 163 } | 164 } |
| OLD | NEW |