Chromium Code Reviews| 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 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1511 "webrtc/webrtc_internals_message_handler.h", | 1511 "webrtc/webrtc_internals_message_handler.h", |
| 1512 "webrtc/webrtc_internals_ui.cc", | 1512 "webrtc/webrtc_internals_ui.cc", |
| 1513 "webrtc/webrtc_internals_ui.h", | 1513 "webrtc/webrtc_internals_ui.h", |
| 1514 "webrtc/webrtc_internals_ui_observer.h", | 1514 "webrtc/webrtc_internals_ui_observer.h", |
| 1515 ] | 1515 ] |
| 1516 | 1516 |
| 1517 deps += [ | 1517 deps += [ |
| 1518 "//jingle:jingle_glue", | 1518 "//jingle:jingle_glue", |
| 1519 "//third_party/libjingle/webrtc:libjingle_webrtc", | 1519 "//third_party/libjingle/webrtc:libjingle_webrtc", |
| 1520 "//third_party/webrtc/base:rtc_base", | 1520 "//third_party/webrtc/base:rtc_base", |
| 1521 "//third_party/webrtc/base:rtc_task_runner", | |
|
Sergey Ulanov
2017/02/16 19:38:13
content code shouldn't depend on rtc_task_runner d
nisse-chromium (ooo August 14)
2017/02/20 09:51:32
Dropped this dependency.
| |
| 1521 "//third_party/webrtc/media:rtc_media_base", | 1522 "//third_party/webrtc/media:rtc_media_base", |
| 1522 "//third_party/webrtc/modules/desktop_capture:primitives", | 1523 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 1523 ] | 1524 ] |
| 1524 } | 1525 } |
| 1525 | 1526 |
| 1526 # Desktop screen capture implementations, conditionally built depending on | 1527 # Desktop screen capture implementations, conditionally built depending on |
| 1527 # the available implementations for each platform. | 1528 # the available implementations for each platform. |
| 1528 if (is_linux || is_mac || is_win) { | 1529 if (is_linux || is_mac || is_win) { |
| 1529 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] | 1530 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] |
| 1530 sources += [ | 1531 sources += [ |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2017 if (!is_component_build) { | 2018 if (!is_component_build) { |
| 2018 public_deps = [ | 2019 public_deps = [ |
| 2019 ":browser", | 2020 ":browser", |
| 2020 ] | 2021 ] |
| 2021 } else { | 2022 } else { |
| 2022 public_deps = [ | 2023 public_deps = [ |
| 2023 "//third_party/leveldatabase", | 2024 "//third_party/leveldatabase", |
| 2024 ] | 2025 ] |
| 2025 } | 2026 } |
| 2026 } | 2027 } |
| OLD | NEW |