blob: 08a93d33e8ca0a5e90ae62a1ed8f2e3ce6ea1e2d [file] [log] [blame]
btolsch9d6900c2018-05-30 18:22:53 -07001# 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
5source_set("platform") {
btolsch862da492018-09-26 13:32:58 -07006 deps = [
7 "base",
8 ]
btolsch5292c942018-07-26 00:06:22 -07009
Yuri Wiitala82edd202018-10-31 18:42:58 -070010 if (is_linux) {
btolsch5292c942018-07-26 00:06:22 -070011 deps += [ "linux" ]
Yuri Wiitala82edd202018-10-31 18:42:58 -070012 } else if (is_mac) {
13 deps += [ "mac" ]
btolsch5292c942018-07-26 00:06:22 -070014 }
Jordan Bayles9eb09742019-01-15 14:04:52 -080015
16 public_deps = [
17 "//third_party/abseil",
18 ]
btolsch9d6900c2018-05-30 18:22:53 -070019}