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

Side by Side Diff: content/browser/BUILD.gn

Issue 1825633002: Adds UMA histograms for desktop tab and audio capture through (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/mojo_application_manifest.gni") 9 import("//mojo/public/mojo_application_manifest.gni")
10 10
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 "//content") 178 "//content")
179 deps += [ 179 deps += [
180 "//jingle:jingle_glue", 180 "//jingle:jingle_glue",
181 "//third_party/libjingle:libjingle_webrtc", 181 "//third_party/libjingle:libjingle_webrtc",
182 "//third_party/libjingle:libpeerconnection", 182 "//third_party/libjingle:libpeerconnection",
183 ] 183 ]
184 if (is_linux || is_mac || is_win) { 184 if (is_linux || is_mac || is_win) {
185 sources += [ 185 sources += [
186 "media/capture/desktop_capture_device.cc", 186 "media/capture/desktop_capture_device.cc",
187 "media/capture/desktop_capture_device.h", 187 "media/capture/desktop_capture_device.h",
188 "media/capture/desktop_capture_device_uma_types.cc",
189 "media/capture/desktop_capture_device_uma_types.h",
190 ] 188 ]
191 if (use_aura) { 189 if (use_aura) {
192 sources += [ 190 sources += [
193 "media/capture/aura_window_capture_machine.cc", 191 "media/capture/aura_window_capture_machine.cc",
194 "media/capture/aura_window_capture_machine.h", 192 "media/capture/aura_window_capture_machine.h",
195 "media/capture/desktop_capture_device_aura.cc", 193 "media/capture/desktop_capture_device_aura.cc",
196 "media/capture/desktop_capture_device_aura.h", 194 "media/capture/desktop_capture_device_aura.h",
197 ] 195 ]
198 } 196 }
199 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] 197 defines += [ "ENABLE_SCREEN_CAPTURE=1" ]
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 type = "exe" 515 type = "exe"
518 application_name = "chrome" 516 application_name = "chrome"
519 source = "mojo/chrome_manifest.json" 517 source = "mojo/chrome_manifest.json"
520 } 518 }
521 519
522 mojo_application_manifest("chrome_renderer_manifest") { 520 mojo_application_manifest("chrome_renderer_manifest") {
523 type = "exe" 521 type = "exe"
524 application_name = "chrome_renderer" 522 application_name = "chrome_renderer"
525 source = "mojo/chrome_renderer_manifest.json" 523 source = "mojo/chrome_renderer_manifest.json"
526 } 524 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698