btolsch | 9d6900c | 2018-05-30 18:22:53 -0700 | [diff] [blame] | 1 | # Copyright 2018 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. | ||||
4 | |||||
5 | source_set("platform") { | ||||
btolsch | 862da49 | 2018-09-26 13:32:58 -0700 | [diff] [blame] | 6 | deps = [ |
7 | "base", | ||||
8 | ] | ||||
btolsch | 5292c94 | 2018-07-26 00:06:22 -0700 | [diff] [blame] | 9 | |
Yuri Wiitala | 82edd20 | 2018-10-31 18:42:58 -0700 | [diff] [blame] | 10 | if (is_linux) { |
btolsch | 5292c94 | 2018-07-26 00:06:22 -0700 | [diff] [blame] | 11 | deps += [ "linux" ] |
Yuri Wiitala | 82edd20 | 2018-10-31 18:42:58 -0700 | [diff] [blame] | 12 | } else if (is_mac) { |
13 | deps += [ "mac" ] | ||||
btolsch | 5292c94 | 2018-07-26 00:06:22 -0700 | [diff] [blame] | 14 | } |
Jordan Bayles | 9eb0974 | 2019-01-15 14:04:52 -0800 | [diff] [blame^] | 15 | |
16 | public_deps = [ | ||||
17 | "//third_party/abseil", | ||||
18 | ] | ||||
btolsch | 9d6900c | 2018-05-30 18:22:53 -0700 | [diff] [blame] | 19 | } |