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

Unified Diff: base/BUILD.gn

Issue 2733293003: (DO NOT LAND) Example GN solution for C++ 101 Exercise 0 (Hello world). (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | base/cpp101/hello_world.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index 59b32077fc5036229d87c630a5a331ea6ddf88ad..ea085fffb63f12a48ab1a70a08c777f2f57c12dd 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -1752,6 +1752,15 @@ test("base_i18n_perftests") {
]
}
+executable("hello_world") {
+ sources = [
+ "cpp101/hello_world.cc",
+ ]
+ deps = [
+ ":base",
+ ]
+}
+
if (!is_ios) {
executable("build_utf8_validator_tables") {
sources = [
« no previous file with comments | « no previous file | base/cpp101/hello_world.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698