naiveproxy/ios/third_party/motion_interchange_objc/BUILD.gn

38 lines
961 B
Plaintext
Raw Normal View History

2018-01-28 21:32:06 +03:00
# Copyright 2017 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.
config("config") {
include_dirs = [ "src/src" ]
visibility = [ ":motion_interchange_objc" ]
}
source_set("motion_interchange_objc") {
sources = [
"src/src/MDMMotionCurve.h",
"src/src/MDMMotionCurve.m",
"src/src/MDMMotionRepetition.h",
"src/src/MDMMotionTiming.h",
"src/src/MotionInterchange.h",
]
public = [
"src/src/MDMMotionCurve.h",
"src/src/MDMMotionRepetition.h",
"src/src/MDMMotionTiming.h",
"src/src/MotionInterchange.h",
]
libs = [
"CoreGraphics.framework",
"Foundation.framework",
"QuartzCore.framework",
]
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [
":config",
"//build/config/compiler:enable_arc",
"//build/config/compiler:no_chromium_code",
]
public_configs = [ ":config" ]
}