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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 '../mojo_variables.gypi', | 10 '../mojo_variables.gypi', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 '../public/mojo_public.gyp:mojo_public_bindings_test_utils', | 77 '../public/mojo_public.gyp:mojo_public_bindings_test_utils', |
78 '../public/mojo_public.gyp:mojo_public_test_interfaces', | 78 '../public/mojo_public.gyp:mojo_public_test_interfaces', |
79 '../public/mojo_public.gyp:mojo_public_test_utils', | 79 '../public/mojo_public.gyp:mojo_public_test_utils', |
80 '../public/mojo_public.gyp:mojo_utility', | 80 '../public/mojo_public.gyp:mojo_utility', |
81 ], | 81 ], |
82 'sources': [ | 82 'sources': [ |
83 '../public/cpp/bindings/tests/array_unittest.cc', | 83 '../public/cpp/bindings/tests/array_unittest.cc', |
84 '../public/cpp/bindings/tests/bounds_checker_unittest.cc', | 84 '../public/cpp/bindings/tests/bounds_checker_unittest.cc', |
85 '../public/cpp/bindings/tests/buffer_unittest.cc', | 85 '../public/cpp/bindings/tests/buffer_unittest.cc', |
86 '../public/cpp/bindings/tests/connector_unittest.cc', | 86 '../public/cpp/bindings/tests/connector_unittest.cc', |
| 87 '../public/cpp/bindings/tests/container_test_util.cc', |
87 '../public/cpp/bindings/tests/handle_passing_unittest.cc', | 88 '../public/cpp/bindings/tests/handle_passing_unittest.cc', |
88 '../public/cpp/bindings/tests/interface_ptr_unittest.cc', | 89 '../public/cpp/bindings/tests/interface_ptr_unittest.cc', |
| 90 '../public/cpp/bindings/tests/map_unittest.cc', |
89 '../public/cpp/bindings/tests/request_response_unittest.cc', | 91 '../public/cpp/bindings/tests/request_response_unittest.cc', |
90 '../public/cpp/bindings/tests/router_unittest.cc', | 92 '../public/cpp/bindings/tests/router_unittest.cc', |
91 '../public/cpp/bindings/tests/sample_service_unittest.cc', | 93 '../public/cpp/bindings/tests/sample_service_unittest.cc', |
92 '../public/cpp/bindings/tests/serialization_warning_unittest.cc', | 94 '../public/cpp/bindings/tests/serialization_warning_unittest.cc', |
93 '../public/cpp/bindings/tests/string_unittest.cc', | 95 '../public/cpp/bindings/tests/string_unittest.cc', |
94 '../public/cpp/bindings/tests/struct_unittest.cc', | 96 '../public/cpp/bindings/tests/struct_unittest.cc', |
95 '../public/cpp/bindings/tests/type_conversion_unittest.cc', | 97 '../public/cpp/bindings/tests/type_conversion_unittest.cc', |
96 '../public/cpp/bindings/tests/validation_unittest.cc', | 98 '../public/cpp/bindings/tests/validation_unittest.cc', |
97 ], | 99 ], |
98 }, | 100 }, |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 'conditions': [ | 398 'conditions': [ |
397 ['OS=="ios"', { | 399 ['OS=="ios"', { |
398 'sources!': [ | 400 'sources!': [ |
399 'test/multiprocess_test_helper.cc', | 401 'test/multiprocess_test_helper.cc', |
400 ], | 402 ], |
401 }], | 403 }], |
402 ], | 404 ], |
403 }, | 405 }, |
404 ], | 406 ], |
405 } | 407 } |
OLD | NEW |