summaryrefslogtreecommitdiffstats
path: root/o3d/build/common_global.gypi
blob: b4d4e8fbdf717ece56a11d50a3c7b0828a30f932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# This file contains flags that are specific to o3d, but affect the build as a
# whole (e.g. build flags that change the ABI).
# For example, on linux amd64, all the libraries that will be linked into the
# plugin (skia, v8, ...) need to be compiled with -fPIC but we don't want to do
# that generally in Chrome (so it can't be lumped into the top-level
# build/common.gypi).
{
  'variables': {
    'conditions': [
      [ 'OS == "linux"', {
        'use_system_zlib': 0,
        'use_system_libjpeg': 0,
      }],
      [ 'OS == "win"', {
        'nacl_standalone': 1,
      }],
    ],
  },
  'target_defaults': {
    'conditions': [
      [ 'OS == "linux" and target_arch=="x64"', {
        'cflags': [
          '-m64',
          '-fPIC',
        ],
        'ldflags': [
          '-m64',
        ],
      }],
      [ 'OS == "mac"', {
          'xcode_settings': {
            'MACOSX_DEPLOYMENT_TARGET': '10.5',
            'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
            'OTHER_CFLAGS': ['-mmacosx-version-min=10.5'],
          },
          'defines': [
            'MAC_OS_X_VERSION_MIN_REQUIRED=MAC_OS_X_VERSION_10_5',
          ],
      }],
    ],
  },
}