| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/container_test_util.cc', |
| 88 '../public/cpp/bindings/tests/equals_unittest.cc', |
| 88 '../public/cpp/bindings/tests/handle_passing_unittest.cc', | 89 '../public/cpp/bindings/tests/handle_passing_unittest.cc', |
| 89 '../public/cpp/bindings/tests/interface_ptr_unittest.cc', | 90 '../public/cpp/bindings/tests/interface_ptr_unittest.cc', |
| 90 '../public/cpp/bindings/tests/map_unittest.cc', | 91 '../public/cpp/bindings/tests/map_unittest.cc', |
| 91 '../public/cpp/bindings/tests/request_response_unittest.cc', | 92 '../public/cpp/bindings/tests/request_response_unittest.cc', |
| 92 '../public/cpp/bindings/tests/router_unittest.cc', | 93 '../public/cpp/bindings/tests/router_unittest.cc', |
| 93 '../public/cpp/bindings/tests/sample_service_unittest.cc', | 94 '../public/cpp/bindings/tests/sample_service_unittest.cc', |
| 94 '../public/cpp/bindings/tests/serialization_warning_unittest.cc', | 95 '../public/cpp/bindings/tests/serialization_warning_unittest.cc', |
| 95 '../public/cpp/bindings/tests/string_unittest.cc', | 96 '../public/cpp/bindings/tests/string_unittest.cc', |
| 96 '../public/cpp/bindings/tests/struct_unittest.cc', | 97 '../public/cpp/bindings/tests/struct_unittest.cc', |
| 97 '../public/cpp/bindings/tests/type_conversion_unittest.cc', | 98 '../public/cpp/bindings/tests/type_conversion_unittest.cc', |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 'conditions': [ | 401 'conditions': [ |
| 401 ['OS=="ios"', { | 402 ['OS=="ios"', { |
| 402 'sources!': [ | 403 'sources!': [ |
| 403 'test/multiprocess_test_helper.cc', | 404 'test/multiprocess_test_helper.cc', |
| 404 ], | 405 ], |
| 405 }], | 406 }], |
| 406 ], | 407 ], |
| 407 }, | 408 }, |
| 408 ], | 409 ], |
| 409 } | 410 } |
| OLD | NEW |