summaryrefslogtreecommitdiffstats
path: root/third_party/molokocacao
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-02-23 13:13:44 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-23 21:14:13 +0000
commit9e7cf706813c75c95c5f24c3bacb5ea24ec0e972 (patch)
treee22925dd1dfc034697882cfd5d0239bf6c9e2c48 /third_party/molokocacao
parentc1a2d79550785a71188df21e78c87447c63ebc38 (diff)
downloadchromium_src-9e7cf706813c75c95c5f24c3bacb5ea24ec0e972.zip
chromium_src-9e7cf706813c75c95c5f24c3bacb5ea24ec0e972.tar.gz
chromium_src-9e7cf706813c75c95c5f24c3bacb5ea24ec0e972.tar.bz2
Add GN build files for apple_sample_code and molokocacao targets.
This can be tested with the following command lines in a Mac computer: $ gn gen out-gn $ ninja -C out-gn apple_sample_code molokocacao BUG=None TEST=see above R=avi@chromium.org,mark@chromium.org Review URL: https://codereview.chromium.org/946963002 Cr-Commit-Position: refs/heads/master@{#317650}
Diffstat (limited to 'third_party/molokocacao')
-rw-r--r--third_party/molokocacao/BUILD.gn16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/molokocacao/BUILD.gn b/third_party/molokocacao/BUILD.gn
new file mode 100644
index 0000000..9b660f5
--- /dev/null
+++ b/third_party/molokocacao/BUILD.gn
@@ -0,0 +1,16 @@
+# Copyright 2015 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.
+
+source_set("molokocacao") {
+ sources = [
+ "NSBezierPath+MCAdditions.h",
+ "NSBezierPath+MCAdditions.m",
+ ]
+
+ deps = [
+ "//third_party/google_toolbox_for_mac",
+ ]
+
+ libs = [ "AppKit.framework" ]
+}