| 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 = [ "//mojo/edk/system" ] | 8 visibility = [ "//mojo/edk/system" ] |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 configs += [ "//mojo/edk/system:system_config" ] | 76 configs += [ "//mojo/edk/system:system_config" ] |
| 77 | 77 |
| 78 deps = [ "//base" ] | 78 deps = [ "//base" ] |
| 79 } | 79 } |
| 80 | 80 |
| 81 source_set("embedder_unittests") { | 81 source_set("embedder_unittests") { |
| 82 testonly = true | 82 testonly = true |
| 83 visibility = [ "//mojo/edk/system:mojo_system_unittests" ] | 83 visibility = [ "//mojo/edk/system:mojo_system_unittests" ] |
| 84 | 84 |
| 85 sources = [ | 85 sources = [ |
| 86 "embedder_test_util.cc", |
| 87 "embedder_test_util.h", |
| 86 "embedder_unittest.cc", | 88 "embedder_unittest.cc", |
| 87 "platform_channel_pair_posix_unittest.cc", | 89 "platform_channel_pair_posix_unittest.cc", |
| 88 "simple_platform_shared_buffer_unittest.cc", | 90 "simple_platform_shared_buffer_unittest.cc", |
| 89 ] | 91 ] |
| 90 | 92 |
| 93 if (!is_android) { |
| 94 sources += [ |
| 95 "embedder_multiprocess_unittest.cc", |
| 96 ] |
| 97 } |
| 98 |
| 91 deps = [ | 99 deps = [ |
| 92 "//base", | 100 "//base", |
| 93 "//base/test:test_support", | 101 "//base/test:test_support", |
| 94 "//mojo/edk/test:test_support", | 102 "//mojo/edk/test:test_support", |
| 95 "//mojo/edk/system", | 103 "//mojo/edk/system", |
| 96 "//testing/gtest", | 104 "//testing/gtest", |
| 97 ] | 105 ] |
| 98 } | 106 } |
| OLD | NEW |