| 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 { |
| 11 # GN version: //chrome/browser/media/router:router | 11 # GN version: //chrome/browser/media/router:router |
| 12 'target_name': 'media_router', | 12 'target_name': 'media_router', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'include_dirs': [ | 14 'include_dirs': [ |
| 15 '<(DEPTH)', | 15 '<(DEPTH)', |
| 16 '<(DEPTH)/third_party/mojo/src', | 16 '<(DEPTH)/third_party/mojo/src', |
| 17 ], | 17 ], |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 # media_router_type_converters.h needs the generated file. | 19 # media_router_type_converters.h needs the generated file. |
| 20 'media_router_mojo_gen', | 20 'media_router_mojo_gen', |
| 21 'media_router_mojo', | 21 'media_router_mojo', |
| 22 '<(DEPTH)/base/base.gyp:base', | 22 '<(DEPTH)/base/base.gyp:base', |
| 23 '<(DEPTH)/chrome/common_constants.gyp:common_constants', |
| 24 '<(DEPTH)/components/components.gyp:keyed_service_content', |
| 23 '<(DEPTH)/components/components.gyp:keyed_service_core', | 25 '<(DEPTH)/components/components.gyp:keyed_service_core', |
| 24 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', | 26 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', |
| 25 '<(DEPTH)/skia/skia.gyp:skia', | 27 '<(DEPTH)/skia/skia.gyp:skia', |
| 26 '<(DEPTH)/url/url.gyp:url_lib', | 28 '<(DEPTH)/url/url.gyp:url_lib', |
| 27 ], | 29 ], |
| 28 'sources': [ | 30 'sources': [ |
| 29 '<@(media_router_sources)', | 31 '<@(media_router_sources)', |
| 30 ], | 32 ], |
| 31 }, | 33 }, |
| 32 { | 34 { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 53 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj
om.cc', | 55 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj
om.cc', |
| 54 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj
om.h', | 56 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj
om.h', |
| 55 ], | 57 ], |
| 56 }, | 58 }, |
| 57 { | 59 { |
| 58 # GN version: //chrome/browser/media/router:test_support | 60 # GN version: //chrome/browser/media/router:test_support |
| 59 'target_name': 'media_router_test_support', | 61 'target_name': 'media_router_test_support', |
| 60 'type': 'static_library', | 62 'type': 'static_library', |
| 61 'include_dirs': [ | 63 'include_dirs': [ |
| 62 '<(DEPTH)', | 64 '<(DEPTH)', |
| 65 '<(DEPTH)/third_party/mojo/src', |
| 63 ], | 66 ], |
| 64 'dependencies': [ | 67 'dependencies': [ |
| 65 'media_router', | 68 'media_router', |
| 66 'media_router_mojo', | 69 'media_router_mojo', |
| 67 '<(DEPTH)/base/base.gyp:base', | 70 '<(DEPTH)/base/base.gyp:base', |
| 68 '<(DEPTH)/testing/gmock.gyp:gmock', | 71 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 69 ], | 72 ], |
| 70 'sources': [ | 73 'sources': [ |
| 71 '<@(media_router_test_support_sources)', | 74 '<@(media_router_test_support_sources)', |
| 72 ], | 75 ], |
| 73 }, | 76 }, |
| 74 ], | 77 ], |
| 75 } | 78 } |
| OLD | NEW |