| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'media_router.gypi', | 7 'media_router.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 }, | 63 }, |
| 64 { | 64 { |
| 65 # GN version: //chrome/browser/media/router:test_support | 65 # GN version: //chrome/browser/media/router:test_support |
| 66 'target_name': 'media_router_test_support', | 66 'target_name': 'media_router_test_support', |
| 67 'type': 'static_library', | 67 'type': 'static_library', |
| 68 'include_dirs': [ | 68 'include_dirs': [ |
| 69 '<(DEPTH)', | 69 '<(DEPTH)', |
| 70 ], | 70 ], |
| 71 'dependencies': [ | 71 'dependencies': [ |
| 72 'media_router', | 72 'media_router', |
| 73 # TODO(crbug.com/596999): Move non-Android code to mojo/ |
| 73 'media_router_mojo', | 74 'media_router_mojo', |
| 74 'media_router_mojo_gen', | 75 'media_router_mojo_gen', |
| 75 '<(DEPTH)/base/base.gyp:base', | 76 '<(DEPTH)/base/base.gyp:base', |
| 76 '<(DEPTH)/testing/gmock.gyp:gmock', | 77 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 77 ], | 78 ], |
| 78 'sources': [ | 79 'sources': [ |
| 79 '<@(media_router_test_support_sources)', | 80 '<@(media_router_test_support_sources)', |
| 80 ], | 81 ], |
| 82 'conditions': [ |
| 83 [ 'OS!="android" and OS!="ios"', { |
| 84 'dependencies': [ |
| 85 '<(DEPTH)/extensions/extensions.gyp:extensions_common', |
| 86 ], |
| 87 'sources': [ |
| 88 '<@(media_router_non_android_test_support_sources)', |
| 89 ] |
| 90 }], |
| 91 ] |
| 81 }, | 92 }, |
| 82 ], | 93 ], |
| 83 } | 94 } |
| OLD | NEW |