exclude PluginsFieldTrialTest.NoPrefLeftBehind from valgrind bot
[chromium-blink-merge.git] / tools / gn / tutorial / say_hello.cc
blobd8092bd4daebeff13fed17e8b5ecc7c272f67fcf
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", "Joy");
10 #else
11 Hello("everyone");
12 #endif
13 return 0;