blob: ae3b1003f22fe66cbb76822f146e9bd80a4fbfd1 [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("platform") {
if (is_mac || is_ios) {
deps = [
"darwin",
]
} else if (is_android) {
deps = [
"android",
]
} else if (is_linux) {
deps = [
"embedder",
]
} else if (is_win) {
# There is no platform target on windows. Instead, only a tester is used.
deps = []
} else {
assert(false, "Unknown/Unsupported platform.")
}
}