Enable -Wunused-local-typedef
[chromium-blink-merge.git] / sandbox / BUILD.gn
blob647fde7aa30ac1b1f6d3a1928a186b0b3b006d4f
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
3 # found in the LICENSE file.
5 # Meta-target that forwards to the proper platform one.
6 group("sandbox") {
7   if (is_win) {
8     deps = [ "//sandbox/win:sandbox" ]
9   } else if (is_mac) {
10     # TODO(GYP): Make sandbox compile w/ 10.6 SDK.
11     if (false) {
12       deps = [ "//sandbox/mac:sandbox" ]
13     }
14   } else if (is_linux || is_android) {
15     deps = [ "//sandbox/linux:sandbox" ]
16   }