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

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

Issue 2123863004: ScreenCapture for Android phase1, part II (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, 180 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources,
181 ".", 181 ".",
182 "//content") 182 "//content")
183 deps += [ 183 deps += [
184 "//jingle:jingle_glue", 184 "//jingle:jingle_glue",
185 "//third_party/libjingle:libjingle_webrtc", 185 "//third_party/libjingle:libjingle_webrtc",
186 "//third_party/webrtc", 186 "//third_party/webrtc",
187 "//third_party/webrtc/base:rtc_base", 187 "//third_party/webrtc/base:rtc_base",
188 "//third_party/webrtc/modules/desktop_capture:primitives", 188 "//third_party/webrtc/modules/desktop_capture:primitives",
189 ] 189 ]
190 if (is_linux || is_mac || is_win) { 190 if (is_linux || is_mac || is_win || is_android) {
191 sources += [ 191 sources += [
192 "media/capture/desktop_capture_device.cc", 192 "media/capture/desktop_capture_device.cc",
193 "media/capture/desktop_capture_device.h", 193 "media/capture/desktop_capture_device.h",
194 ] 194 ]
195 if (use_aura) { 195 if (use_aura) {
196 sources += [ 196 sources += [
197 "media/capture/aura_window_capture_machine.cc", 197 "media/capture/aura_window_capture_machine.cc",
198 "media/capture/aura_window_capture_machine.h", 198 "media/capture/aura_window_capture_machine.h",
199 "media/capture/desktop_capture_device_aura.cc", 199 "media/capture/desktop_capture_device_aura.cc",
200 "media/capture/desktop_capture_device_aura.h", 200 "media/capture/desktop_capture_device_aura.h",
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 if (!is_component_build) { 512 if (!is_component_build) {
513 public_deps = [ 513 public_deps = [
514 ":browser", 514 ":browser",
515 ] 515 ]
516 } else { 516 } else {
517 public_deps = [ 517 public_deps = [
518 "//third_party/leveldatabase", 518 "//third_party/leveldatabase",
519 ] 519 ]
520 } 520 }
521 } 521 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698