blob: d2583a9b7d5af4cdee8769e7e205748256ab85aa [file] [log] [blame]
abarth6fc8ff02016-07-15 15:15:15 -07001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
mtkleinf037d482016-07-19 08:25:00 -07006template("third_party") {
7 source_set(target_name) {
8 forward_variables_from(invoker, "*")
abarth6fc8ff02016-07-15 15:15:15 -07009
mtkleinf037d482016-07-19 08:25:00 -070010 # Warnings are just noise if we're not maintaining the code.
11 cflags = [ "-w" ]
mtkleinf037d482016-07-19 08:25:00 -070012 }
13}