| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 "webrtc/webrtc_internals_message_handler.cc", | 1444 "webrtc/webrtc_internals_message_handler.cc", |
| 1445 "webrtc/webrtc_internals_message_handler.h", | 1445 "webrtc/webrtc_internals_message_handler.h", |
| 1446 "webrtc/webrtc_internals_ui.cc", | 1446 "webrtc/webrtc_internals_ui.cc", |
| 1447 "webrtc/webrtc_internals_ui.h", | 1447 "webrtc/webrtc_internals_ui.h", |
| 1448 "webrtc/webrtc_internals_ui_observer.h", | 1448 "webrtc/webrtc_internals_ui_observer.h", |
| 1449 ] | 1449 ] |
| 1450 | 1450 |
| 1451 deps += [ | 1451 deps += [ |
| 1452 "//jingle:jingle_glue", | 1452 "//jingle:jingle_glue", |
| 1453 "//third_party/libjingle:libjingle_webrtc", | 1453 "//third_party/libjingle:libjingle_webrtc", |
| 1454 "//third_party/webrtc", | |
| 1455 "//third_party/webrtc/base:rtc_base", | 1454 "//third_party/webrtc/base:rtc_base", |
| 1456 "//third_party/webrtc/media:rtc_media", | 1455 "//third_party/webrtc/media:rtc_media", |
| 1457 "//third_party/webrtc/modules/desktop_capture:primitives", | 1456 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 1458 ] | 1457 ] |
| 1459 if (!is_ios) { | 1458 if (!is_ios) { |
| 1460 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] | 1459 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] |
| 1461 } | 1460 } |
| 1462 if (is_linux || is_mac || is_win) { | 1461 if (is_linux || is_mac || is_win) { |
| 1463 sources += [ | 1462 sources += [ |
| 1464 "media/capture/desktop_capture_device.cc", | 1463 "media/capture/desktop_capture_device.cc", |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1941 if (!is_component_build) { | 1940 if (!is_component_build) { |
| 1942 public_deps = [ | 1941 public_deps = [ |
| 1943 ":browser", | 1942 ":browser", |
| 1944 ] | 1943 ] |
| 1945 } else { | 1944 } else { |
| 1946 public_deps = [ | 1945 public_deps = [ |
| 1947 "//third_party/leveldatabase", | 1946 "//third_party/leveldatabase", |
| 1948 ] | 1947 ] |
| 1949 } | 1948 } |
| 1950 } | 1949 } |
| OLD | NEW |