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

Side by Side Diff: tools/gn/tutorial/BUILD.gn

Issue 2094583004: Initial commit for Chrome metainstaller on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Additional progress addressing downloader and parser, moved BUILD dependencies away from root. Created 4 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 executable("hello_world") {
Mark Mentovai 2016/06/28 15:42:51 You shouldn’t check this file in. The gn tutorial
2 sources = [
3 "hello_world.cc",
4 ]
5 }
6
7 static_library("hello") {
8 sources = [
9 "hello.cc",
10 ]
11 defines = [ "TWO_PEOPLE" ]
12 configs += [ ":hello_config" ]
13 all_dependent_configs = [ ":hello_config" ]
14 print(configs)
15 }
16
17 executable("say_hello") {
18 sources = [
19 "say_hello.cc",
20 ]
21 deps = [
22 ":hello",
23 ]
24 }
25
26 config("hello_config") {
27 defines = [ "TWO_PEOPLE" ]
28 }
OLDNEW
« chrome/installer/mac/app/downloader.m ('K') | « chrome/installer/mac/app/testing/responseExample.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698