diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-24 11:05:21 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-24 11:05:21 +0000 |
commit | 86ec66596544ad8b248e482d4ac84a2b3a3b33fd (patch) | |
tree | dc420f08dcdeace86f8ca88b81415aa77ac913d4 /chrome/common_constants.gypi | |
parent | 5a9bb8d6fad3df068fa8fe8301ca1685c0c66bb6 (diff) | |
download | chromium_src-86ec66596544ad8b248e482d4ac84a2b3a3b33fd.zip chromium_src-86ec66596544ad8b248e482d4ac84a2b3a3b33fd.tar.gz chromium_src-86ec66596544ad8b248e482d4ac84a2b3a3b33fd.tar.bz2 |
revert r35237 since it causes Mac unit tests to fail.
"Split more targets from chrome.gyp to add support for building Native Client for 64-bit Windows. "
BUG=NONE
TEST=NONE
Review URL: http://codereview.chromium.org/520006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common_constants.gypi')
-rw-r--r-- | chrome/common_constants.gypi | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/chrome/common_constants.gypi b/chrome/common_constants.gypi deleted file mode 100644 index e9a47c5..0000000 --- a/chrome/common_constants.gypi +++ /dev/null @@ -1,96 +0,0 @@ -# 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. - -{ - 'target_defaults': { - 'variables': { - 'common_constants_target': 0, - }, - 'target_conditions': [ - ['common_constants_target==1', { - 'sources': [ - 'common/chrome_constants.cc', - 'common/chrome_constants.h', - 'common/chrome_paths.cc', - 'common/chrome_paths.h', - 'common/chrome_paths_internal.h', - 'common/chrome_paths_linux.cc', - 'common/chrome_paths_mac.mm', - 'common/chrome_paths_win.cc', - 'common/chrome_switches.cc', - 'common/chrome_switches.h', - 'common/env_vars.cc', - 'common/env_vars.h', - 'common/json_value_serializer.cc', - 'common/json_value_serializer.h', - 'common/pref_names.cc', - 'common/pref_names.h', - ], - 'actions': [ - { - 'action_name': 'Make chrome_version.cc', - 'variables': { - 'make_version_cc_path': 'tools/build/make_version_cc.py', - }, - 'inputs': [ - '<(make_version_cc_path)', - 'VERSION', - ], - 'outputs': [ - '<(INTERMEDIATE_DIR)/chrome_version.cc', - ], - 'action': [ - 'python', - '<(make_version_cc_path)', - '<@(_outputs)', - '<(version_full)', - ], - 'process_outputs_as_sources': 1, - }, - ], - }], - ], - }, - 'targets': [ - { - 'target_name': 'common_constants', - 'type': '<(library)', - 'variables': { - 'common_constants_target': 1, - }, - 'dependencies': [ - '../base/base.gyp:base', - ], - 'conditions': [ - ['OS=="linux"', { - 'dependencies': ['../build/linux/system.gyp:gtk'], - }], - ], - }, - ], - 'conditions': [ - ['OS=="win"', { - 'targets': [ - { - 'target_name': 'common_constants_win64', - 'type': '<(library)', - 'variables': { - 'common_constants_target': 1, - }, - 'dependencies': [ - '../base/base.gyp:base_nacl_win64', - ], - 'defines': [ - '<@(nacl_win64_defines)', - ], - 'configurations': { - 'Common_Base': { - 'msvs_target_platform': 'x64', - }, - }, - }, - ], - }], - ], -} |