• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2014 Google Inc. 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.
4{
5  'targets': [{
6    'target_name': 'test',
7    'type': 'none',
8    'dependencies': ['child_one', 'child_two'],
9  }, {
10    'target_name': 'child_one',
11    'product_name': 'Collide',
12    'product_extension': 'bar',
13    'sources': ['src.cc'],
14    'type': 'loadable_module',
15    'mac_bundle': 1,
16  }, {
17    'target_name': 'child_two',
18    'product_name': 'Collide',
19    'product_extension': 'foo',
20    'sources': ['src.cc'],
21    'type': 'loadable_module',
22    'mac_bundle': 1,
23  }],
24}
25