Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: chrome/browser/media/router/media_router.gyp

Issue 1821823002: [Media Router] Conditionally enable mDNS on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments, build, and removing move Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 19 matching lines...) Expand all
30 'dependencies': [ 30 'dependencies': [
31 # media_router_type_converters.h needs the generated file. 31 # media_router_type_converters.h needs the generated file.
32 'media_router_mojo_gen', 32 'media_router_mojo_gen',
33 'media_router_mojo', 33 'media_router_mojo',
34 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', 34 '<(DEPTH)/extensions/extensions.gyp:extensions_browser',
35 ], 35 ],
36 'sources': [ 36 'sources': [
37 '<@(media_router_non_android_sources)', 37 '<@(media_router_non_android_sources)',
38 ] 38 ]
39 }], 39 }],
40 [ 'OS=="win"', {
41 'sources': [
42 '<@(media_router_win_sources)',
43 ],
44 }],
40 ] 45 ]
41 }, 46 },
42 { 47 {
43 # Mojo compiler for the Media Router internal API. 48 # Mojo compiler for the Media Router internal API.
44 'target_name': 'media_router_mojo_gen', 49 'target_name': 'media_router_mojo_gen',
45 'type': 'none', 50 'type': 'none',
46 'sources': [ 51 'sources': [
47 'media_router.mojom', 52 'media_router.mojom',
48 ], 53 ],
49 'includes': [ 54 'includes': [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 '<(DEPTH)/extensions/extensions.gyp:extensions_common', 90 '<(DEPTH)/extensions/extensions.gyp:extensions_common',
86 ], 91 ],
87 'sources': [ 92 'sources': [
88 '<@(media_router_non_android_test_support_sources)', 93 '<@(media_router_non_android_test_support_sources)',
89 ] 94 ]
90 }], 95 }],
91 ] 96 ]
92 }, 97 },
93 ], 98 ],
94 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698