summaryrefslogtreecommitdiffstats
path: root/chrome/plugin
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-23 22:28:15 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-23 22:28:15 +0000
commit3b816b916c6ff7870f1b4ec4653fd3eed38916b6 (patch)
tree9d8494da13d146f14f9cdf2dca78048fa37d9cfd /chrome/plugin
parent3cd95a21a58aba94ae58f9f70701be2f65e69b4a (diff)
downloadchromium_src-3b816b916c6ff7870f1b4ec4653fd3eed38916b6.zip
chromium_src-3b816b916c6ff7870f1b4ec4653fd3eed38916b6.tar.gz
chromium_src-3b816b916c6ff7870f1b4ec4653fd3eed38916b6.tar.bz2
Add chrome/plugin and chrome/utility to GN build.
Updates some TODO references to blink now that there's a proper blink target. R=jamesr@chromium.org Review URL: https://codereview.chromium.org/348363002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279202 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r--chrome/plugin/BUILD.gn18
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/plugin/BUILD.gn b/chrome/plugin/BUILD.gn
new file mode 100644
index 0000000..76e4109
--- /dev/null
+++ b/chrome/plugin/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2014 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.
+
+static_library("plugin") {
+ sources = [
+ "chrome_content_plugin_client.cc",
+ "chrome_content_plugin_client.h",
+ ]
+
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+
+ deps = [
+ "//base",
+ "//chrome:strings",
+ "//content/public/plugin",
+ ]
+}