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

Side by Side Diff: base/base.gyp

Issue 23567011: Example solution for C++ 101 Exercise 0 (hello world) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to 224002 Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/cpp101/hello_world.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 'dependencies': [ 986 'dependencies': [
987 # Needed to handle the #include chain: 987 # Needed to handle the #include chain:
988 # base/test/perf_test_suite.h 988 # base/test/perf_test_suite.h
989 # base/test/test_suite.h 989 # base/test/test_suite.h
990 # gtk/gtk.h 990 # gtk/gtk.h
991 '../build/linux/system.gyp:gtk', 991 '../build/linux/system.gyp:gtk',
992 ], 992 ],
993 }], 993 }],
994 ], 994 ],
995 }, 995 },
996 {
997 'target_name': 'hello_world',
998 'type': 'executable',
999 'dependencies': [
1000 'base',
1001 ],
1002 'sources': [
1003 'cpp101/hello_world.cc',
1004 ],
1005 },
996 ], 1006 ],
997 'conditions': [ 1007 'conditions': [
998 ['OS!="ios"', { 1008 ['OS!="ios"', {
999 'targets': [ 1009 'targets': [
1000 { 1010 {
1001 'target_name': 'check_example', 1011 'target_name': 'check_example',
1002 'type': 'executable', 1012 'type': 'executable',
1003 'sources': [ 1013 'sources': [
1004 'check_example.cc', 1014 'check_example.cc',
1005 ], 1015 ],
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 'base_unittests.isolate', 1341 'base_unittests.isolate',
1332 ], 1342 ],
1333 'sources': [ 1343 'sources': [
1334 'base_unittests.isolate', 1344 'base_unittests.isolate',
1335 ], 1345 ],
1336 }, 1346 },
1337 ], 1347 ],
1338 }], 1348 }],
1339 ], 1349 ],
1340 } 1350 }
OLDNEW
« 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