Revert of Copy Widevine files for swarming tests (patchset #5 id:80001 of https:...
[chromium-blink-merge.git] / build / config / ios / BUILD.gn
blob471f28a7c6b848e129798ba09de0fd3592cfc460
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 import("//build/config/sysroot.gni")
6 import("//build/config/ios/ios_sdk.gni")
8 config("sdk") {
9   common_flags = [
10     "-isysroot",
11     sysroot,
12   ]
14   cflags = common_flags
15   ldflags = common_flags
17   if (use_ios_simulator) {
18     cflags += [ "-mios-simulator-version-min=$ios_deployment_target" ]
19   } else {
20     cflags += [ "-miphoneos-version-min=$ios_deployment_target" ]
21   }