summaryrefslogtreecommitdiffstats
path: root/content/BUILD.gn
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-28 00:25:44 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-28 00:25:44 +0000
commitae8eecf31bbb9b093bcc1e0c613fbda721a7ad9f (patch)
tree44293d67c2abf560c9bd189eab14842cc67ecb06 /content/BUILD.gn
parentbe8234b6aa27d51910c61e55bf6135111afd0e6c (diff)
downloadchromium_src-ae8eecf31bbb9b093bcc1e0c613fbda721a7ad9f.zip
chromium_src-ae8eecf31bbb9b093bcc1e0c613fbda721a7ad9f.tar.gz
chromium_src-ae8eecf31bbb9b093bcc1e0c613fbda721a7ad9f.tar.bz2
Revert 273079 "Add content renderer to the GN build"
> Add content renderer to the GN build > > Also adds ui/native_theme, third_party/npapi, and some required mojo stuff to make it build. > > BUG= > R=scottmg@chromium.org > > Review URL: https://codereview.chromium.org/299113002 TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/302443010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273086 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/BUILD.gn')
-rw-r--r--content/BUILD.gn28
1 files changed, 1 insertions, 27 deletions
diff --git a/content/BUILD.gn b/content/BUILD.gn
index acdd32d..5768baf 100644
--- a/content/BUILD.gn
+++ b/content/BUILD.gn
@@ -2,19 +2,6 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//tools/grit/grit_rule.gni")
-
-# Applied by targets internal to content.
-config("content_implementation") {
- defines = [ "CONTENT_IMPLEMENTATION" ]
-}
-
-grit("resources") {
- source = "content_resources.grd"
-}
-
-# Stubs ------------------------------------------------------------------------
-
# TODO(brettw) remove this and add a proper dependency on blink once that
# target has been converted to GN. This config sets up the include directories
# so content can compile in the meantime.
@@ -31,13 +18,10 @@ config("libjingle_stub_config") {
include_dirs = [
"//third_party/libjingle/overrides",
"//third_party/libjingle/source",
+ "//third_party",
"//third_party/libyuv/include",
"//third_party/usrsctp",
-
-
- "//third_party/webrtc/overrides", # Must be before webrtc abd third_party.
"//third_party/webrtc",
- "//third_party",
]
defines = [
@@ -67,13 +51,3 @@ config("libjingle_stub_config") {
}
}
-# This config is a placeholder to set up the V8 include path while the V8 GN
-# build is being worked on.
-config("v8_stub_config") {
- include_dirs = [ "//v8/include" ]
-}
-
-config("widevine_stub_config") {
- # The real implementation does a copy rule to copy the header to the gen dir.
- include_dirs = [ "//third_party/widevine/cdm" ]
-}