| OLD | NEW |
| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 ] | 203 ] |
| 204 } | 204 } |
| 205 | 205 |
| 206 if (enable_webrtc) { | 206 if (enable_webrtc) { |
| 207 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, | 207 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, |
| 208 ".", | 208 ".", |
| 209 "//content") | 209 "//content") |
| 210 deps += [ | 210 deps += [ |
| 211 "//jingle:jingle_glue", | 211 "//jingle:jingle_glue", |
| 212 "//third_party/libjingle:libjingle_webrtc", | 212 "//third_party/libjingle:libjingle_webrtc", |
| 213 "//third_party/libjingle:libpeerconnection", | |
| 214 ] | 213 ] |
| 215 if (is_linux || is_mac || is_win) { | 214 if (is_linux || is_mac || is_win) { |
| 216 sources += [ | 215 sources += [ |
| 217 "media/capture/desktop_capture_device.cc", | 216 "media/capture/desktop_capture_device.cc", |
| 218 "media/capture/desktop_capture_device.h", | 217 "media/capture/desktop_capture_device.h", |
| 219 "media/capture/desktop_capture_device_uma_types.cc", | 218 "media/capture/desktop_capture_device_uma_types.cc", |
| 220 "media/capture/desktop_capture_device_uma_types.h", | 219 "media/capture/desktop_capture_device_uma_types.h", |
| 221 ] | 220 ] |
| 222 if (use_aura) { | 221 if (use_aura) { |
| 223 sources += [ | 222 sources += [ |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 type = "exe" | 547 type = "exe" |
| 549 application_name = "chrome" | 548 application_name = "chrome" |
| 550 source = "mojo/chrome_manifest.json" | 549 source = "mojo/chrome_manifest.json" |
| 551 } | 550 } |
| 552 | 551 |
| 553 mojo_application_manifest("chrome_renderer_manifest") { | 552 mojo_application_manifest("chrome_renderer_manifest") { |
| 554 type = "exe" | 553 type = "exe" |
| 555 application_name = "chrome_renderer" | 554 application_name = "chrome_renderer" |
| 556 source = "mojo/chrome_renderer_manifest.json" | 555 source = "mojo/chrome_renderer_manifest.json" |
| 557 } | 556 } |
| OLD | NEW |