OLD | NEW |
---|---|
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', |
11 'base.gypi', | 11 'base.gypi', |
12 ], | 12 ], |
13 'targets': [ | 13 'targets': [ |
14 { | 14 { |
15 'target_name': 'hello_world', | |
16 'type': 'executable', | |
17 'dependencies': [ | |
18 'base', | |
19 ], | |
20 'sources': [ | |
21 'cpp101/hello_world.cc', | |
22 ], | |
23 }, | |
24 { | |
Ryan Sleevi
2014/06/11 22:00:08
This looks like an unrelated change from your C++
| |
15 'target_name': 'base', | 25 'target_name': 'base', |
16 'type': '<(component)', | 26 'type': '<(component)', |
17 'toolsets': ['host', 'target'], | 27 'toolsets': ['host', 'target'], |
18 'variables': { | 28 'variables': { |
19 'base_target': 1, | 29 'base_target': 1, |
20 'enable_wexit_time_destructors': 1, | 30 'enable_wexit_time_destructors': 1, |
21 'optimize': 'max', | 31 'optimize': 'max', |
22 }, | 32 }, |
23 'dependencies': [ | 33 'dependencies': [ |
24 'base_static', | 34 'base_static', |
(...skipping 1463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1488 'base_unittests.isolate', | 1498 'base_unittests.isolate', |
1489 ], | 1499 ], |
1490 'sources': [ | 1500 'sources': [ |
1491 'base_unittests.isolate', | 1501 'base_unittests.isolate', |
1492 ], | 1502 ], |
1493 }, | 1503 }, |
1494 ], | 1504 ], |
1495 }], | 1505 }], |
1496 ], | 1506 ], |
1497 } | 1507 } |
OLD | NEW |