Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: content/common/BUILD.gn

Issue 287233002: Start work on GN build for content/common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/tracing/BUILD.gn ('k') | content/common/common.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..21a8e139c8f752c12e6cf826236516734c30b699
--- /dev/null
+++ b/content/common/BUILD.gn
@@ -0,0 +1,39 @@
+# 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.
+
+# TODO(brettw) this file is a work in progress, it is not currently hooked up
+# to the build, but currently represents the state of content/common's deps.
+
+import("//content/common/common.gni")
+
+source_set("common") {
+ # Only targets in the content tree can depend directly on this target.
+ visibility = [ "//content/*" ]
+
+ sources = rebase_path(content_common_gypi_values.private_common_sources,
+ ".", "//content")
+
+ forward_dependent_configs_from = [
+ # TODO(GYP) convert these dependencies.
+ #'../third_party/WebKit/public/blink_headers.gyp:blink_headers',
+ ]
+
+ deps = [
+ "//base",
+ "//components/tracing",
+ "//gpu/command_buffer/common",
+ "//net",
+ "//skia",
+ "//third_party/icu",
+ "//ui/accessibility",
+ "//ui/base:ui_base",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//url",
+ # TODO(GYP) convert these dependencies.
+ #'../third_party/WebKit/public/blink_headers.gyp:blink_headers',
+ #'../third_party/libjingle/libjingle.gyp:libjingle',
+ #'../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
+ ]
+}
« no previous file with comments | « components/tracing/BUILD.gn ('k') | content/common/common.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698