~ubuntu-branches/ubuntu/oneiric/mozc/oneiric

« back to all changes in this revision

Viewing changes to third_party/gyp/test/toolsets/toolsets.gyp

  • Committer: Bazaar Package Importer
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2010-07-14 03:26:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100714032647-13qjisj6m8cm8jdx
Tags: 0.12.410.102-1
* New upstream release (Closes: #588971).
  - Add mozc-server, mozc-utils-gui and scim-mozc packages.
* Update debian/rules.
  Add --gypdir option to build_mozc.py.
* Update debian/control.
  - Bumped standards-version to 3.9.0.
  - Update description.
* Add mozc icon (Closes: #588972).
* Add patch which revises issue 18.
  ibus_mozc_issue18.patch
* kFreeBSD build support.
  support_kfreebsd.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2009 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
{
 
6
  'target_defaults': {
 
7
    'target_conditions': [
 
8
      ['_toolset=="target"', {'defines': ['TARGET']}]
 
9
    ]
 
10
  },
 
11
  'targets': [
 
12
    {
 
13
      'target_name': 'toolsets',
 
14
      'type': 'static_library',
 
15
      'toolsets': ['target', 'host'],
 
16
      'sources': [
 
17
        'toolsets.cc',
 
18
      ],
 
19
    },
 
20
    {
 
21
      'target_name': 'host-main',
 
22
      'type': 'executable',
 
23
      'toolsets': ['host'],
 
24
      'dependencies': ['toolsets'],
 
25
      'sources': [
 
26
        'main.cc',
 
27
      ],
 
28
    },
 
29
    {
 
30
      'target_name': 'target-main',
 
31
      'type': 'executable',
 
32
      'dependencies': ['toolsets'],
 
33
      'sources': [
 
34
        'main.cc',
 
35
      ],
 
36
    },
 
37
  ],
 
38
}