Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / build / config / chromecast_build.gni
blob3fac6094bc679d3f9336d13f8b8ac047654e2b51
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 block should only contain Chromecast-specific build arguments used by
6 # by components outside of //chromecast.
7 declare_args() {
8   # Set this true for a Chromecast build. Chromecast builds are supported on
9   # Linux and Android.
10   is_chromecast = false
13 # Assert that Chromecast is being built for a supported platform.
14 assert(is_linux || is_android || !is_chromecast,
15        "Chromecast builds are not supported on $target_os")