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

Unified Diff: components/dummy/BUILD.gn

Issue 2550093008: Experiment with what gets compiled where (Closed)
Patch Set: Created 4 years 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 | « no previous file | components/dummy/depend_on_me.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/dummy/BUILD.gn
diff --git a/components/dummy/BUILD.gn b/components/dummy/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..465c0b5d0e52b3986b3c9238f78c339ead31b9af
--- /dev/null
+++ b/components/dummy/BUILD.gn
@@ -0,0 +1,17 @@
+static_library("depend_on_me") {
+ sources = [
+ "depend_on_me.h",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
+executable("dont_depend_on_me_im_broken") {
+ sources = [
+ "dont_depend_on_me_main.cc",
+ ]
+ deps = [
+ "//base",
+ ]
+}
« no previous file with comments | « no previous file | components/dummy/depend_on_me.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698