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

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

Issue 1765143002: [Media Router] Add UMA histograms tracking component extension version/wakeups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move media_router_metrics_unittest to non_android 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
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/browser/media/router/media_router.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « chrome/browser/media/router/BUILD.gn ('k') | chrome/browser/media/router/media_router.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698