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

Side by Side Diff: chromecast/chromecast.gyp

Issue 701633002: Chromecast: adds handler to log metrics from external processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: style nit Created 6 years, 1 month 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 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 { 5 {
6 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'chromecast_branding%': 'Chromium', 10 'chromecast_branding%': 'Chromium',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'browser/service/cast_service_android.h', 192 'browser/service/cast_service_android.h',
193 ], 193 ],
194 }, { 194 }, {
195 'sources': [ 195 'sources': [
196 'browser/service/cast_service_simple.cc', 196 'browser/service/cast_service_simple.cc',
197 'browser/service/cast_service_simple.h', 197 'browser/service/cast_service_simple.h',
198 ], 198 ],
199 }], 199 }],
200 ], 200 ],
201 }], 201 }],
202 # ExternalMetrics not necessary on Android and (as of this writing) uses
203 # non-portable filesystem operations. Also webcrypto is not used on
204 # Android either.
205 ['OS=="linux"', {
206 'sources': [
207 'browser/metrics/external_metrics.cc',
208 'browser/metrics/external_metrics.h',
209 ],
210 'dependencies': [
211 '../components/components.gyp:metrics_serialization',
212 ],
213 }],
202 ], 214 ],
203 }, 215 },
204 { 216 {
205 'target_name': 'cast_shell_unittests', 217 'target_name': 'cast_shell_unittests',
206 'type': '<(gtest_target_type)', 218 'type': '<(gtest_target_type)',
207 'dependencies': [ 219 'dependencies': [
208 'cast_shell_common', 220 'cast_shell_common',
209 '../base/base.gyp:base_prefs_test_support', 221 '../base/base.gyp:base_prefs_test_support',
210 '../base/base.gyp:run_all_unittests', 222 '../base/base.gyp:run_all_unittests',
211 '../base/base.gyp:test_support_base', 223 '../base/base.gyp:test_support_base',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 'sources': [ 474 'sources': [
463 'browser/test/chromecast_browser_test.cc', 475 'browser/test/chromecast_browser_test.cc',
464 'browser/test/chromecast_browser_test.h', 476 'browser/test/chromecast_browser_test.h',
465 'browser/test/chromecast_browser_test_runner.cc', 477 'browser/test/chromecast_browser_test_runner.cc',
466 ], 478 ],
467 }, 479 },
468 ], # end of targets 480 ], # end of targets
469 }], 481 }],
470 ], # end of conditions 482 ], # end of conditions
471 } 483 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698