| 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("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
| (...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 "webrtc/webrtc_internals.h", | 1507 "webrtc/webrtc_internals.h", |
| 1508 "webrtc/webrtc_internals_message_handler.cc", | 1508 "webrtc/webrtc_internals_message_handler.cc", |
| 1509 "webrtc/webrtc_internals_message_handler.h", | 1509 "webrtc/webrtc_internals_message_handler.h", |
| 1510 "webrtc/webrtc_internals_ui.cc", | 1510 "webrtc/webrtc_internals_ui.cc", |
| 1511 "webrtc/webrtc_internals_ui.h", | 1511 "webrtc/webrtc_internals_ui.h", |
| 1512 "webrtc/webrtc_internals_ui_observer.h", | 1512 "webrtc/webrtc_internals_ui_observer.h", |
| 1513 ] | 1513 ] |
| 1514 | 1514 |
| 1515 deps += [ | 1515 deps += [ |
| 1516 "//jingle:jingle_glue", | 1516 "//jingle:jingle_glue", |
| 1517 "//third_party/libjingle/webrtc:libjingle_webrtc", | |
| 1518 "//third_party/webrtc/base:rtc_base", | 1517 "//third_party/webrtc/base:rtc_base", |
| 1519 "//third_party/webrtc/media:rtc_media_base", | 1518 "//third_party/webrtc/media:rtc_media_base", |
| 1520 "//third_party/webrtc/modules/desktop_capture:primitives", | 1519 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 1520 "//third_party/webrtc_overrides:init_webrtc", |
| 1521 ] | 1521 ] |
| 1522 } | 1522 } |
| 1523 | 1523 |
| 1524 # Desktop screen capture implementations, conditionally built depending on | 1524 # Desktop screen capture implementations, conditionally built depending on |
| 1525 # the available implementations for each platform. | 1525 # the available implementations for each platform. |
| 1526 if (is_linux || is_mac || is_win) { | 1526 if (is_linux || is_mac || is_win) { |
| 1527 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] | 1527 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] |
| 1528 sources += [ | 1528 sources += [ |
| 1529 "media/capture/cursor_renderer.cc", | 1529 "media/capture/cursor_renderer.cc", |
| 1530 "media/capture/cursor_renderer.h", | 1530 "media/capture/cursor_renderer.h", |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 if (!is_component_build) { | 2017 if (!is_component_build) { |
| 2018 public_deps = [ | 2018 public_deps = [ |
| 2019 ":browser", | 2019 ":browser", |
| 2020 ] | 2020 ] |
| 2021 } else { | 2021 } else { |
| 2022 public_deps = [ | 2022 public_deps = [ |
| 2023 "//third_party/leveldatabase", | 2023 "//third_party/leveldatabase", |
| 2024 ] | 2024 ] |
| 2025 } | 2025 } |
| 2026 } | 2026 } |
| OLD | NEW |