Cleanup: Pass std::string as const reference from chromeos/
[chromium-blink-merge.git] / chromecast / chromecast.gni
blob5fe8adb4893f8b828a6a543b6d92f16b57ce20bb
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # This args block should contain arguments used within the //chromecast
6 # directory. Arguments which are used in other Chrome components should
7 # be instead declared in //build/config/chromecast_build.gni.
8 declare_args() {
9   # chromecast_branding is used to include or exclude Google-branded components.
10   # Set it to "public" for a Chromium build.
11   chromecast_branding = "public"
13   # True if Chromecast build is targetted for linux desktop.
14   is_chromecast_desktop_build = is_linux && target_cpu != "arm"
16   # Use the stub graphics lib in //chromecast/graphics. If this is true, the
17   # value of |libcast_graphics_path| is ignored.
18   use_default_cast_graphics =
19       chromecast_branding == "public" || is_chromecast_desktop_build
21   # The path to the cast_graphics shared library. Any target pointed to must
22   # be named "libcast_graphics_1.0".
23   libcast_graphics_path = ""
25   # Use the stub media library in //chromecast/media. If this is true, the
26   # value of |libcast_media_path| is ignored.
27   use_default_cast_media =
28       chromecast_branding == "public" || is_chromecast_desktop_build
30   # The path to the cast_media shared library. Any target pointed to must be
31   # named "libcast_media_1.0".
32   libcast_media_path = ""
34   # Use Playready CDMs.
35   use_playready = false