[Session restore] Rename group name Enabled to Restore.
[chromium-blink-merge.git] / tools / gn / tutorial / say_hello.cc
blob074b8b8f17f24d3668d72b5b4379fd3854aa9233
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "tools/gn/tutorial/hello.h"
7 int main() {
8 #if defined(TWO_PEOPLE)
9 Hello("Bill", "Ted");
10 #else
11 Hello("you guys");
12 #endif
13 return 0;