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

Unified Diff: extensions/browser/app_window/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: . Created 4 years, 3 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
Index: extensions/browser/app_window/BUILD.gn
diff --git a/extensions/browser/app_window/BUILD.gn b/extensions/browser/app_window/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..41971d75fcde85c1b9af10e15c1fc00c8fbc965c
--- /dev/null
+++ b/extensions/browser/app_window/BUILD.gn
@@ -0,0 +1,34 @@
+# Copyright 2016 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("app_window") {
+ sources = [
+ "app_delegate.h",
+ "app_web_contents_helper.cc",
+ "app_web_contents_helper.h",
+ "app_window.cc",
+ "app_window.h",
+ "app_window_client.cc",
+ "app_window_client.h",
+ "app_window_contents.cc",
+ "app_window_contents.h",
+ "app_window_geometry_cache.cc",
+ "app_window_geometry_cache.h",
+ "app_window_registry.cc",
+ "app_window_registry.h",
+ "native_app_window.h",
+ "size_constraints.cc",
+ "size_constraints.h",
+ ]
+
+ configs += [
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ "//build/config/compiler:no_size_t_to_int_warning",
+ ]
+
+ deps = [
+ "//content/public/common",
+ "//extensions/strings",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698