diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 17:25:00 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-04 17:25:00 +0000 |
commit | 37a625a6cefff0972bc95d2add8a797a37dbb3f9 (patch) | |
tree | 43e4b5f31e2d44b6a456fee666b3988d4b2f212d /o3d/build/nacl.gyp | |
parent | e6060447254932d459c6c6fa6061c11a01432c7d (diff) | |
download | chromium_src-37a625a6cefff0972bc95d2add8a797a37dbb3f9.zip chromium_src-37a625a6cefff0972bc95d2add8a797a37dbb3f9.tar.gz chromium_src-37a625a6cefff0972bc95d2add8a797a37dbb3f9.tar.bz2 |
This adds in targets for selenium and updated several other problems,
including some problems with the samples and idl generation.
Selenium targets launch selenium on all platforms, but the tests don't
pass anywhere but Windows yet because the plugin isn't found.
I'll work on that next.
Review URL: http://codereview.chromium.org/197014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25467 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/build/nacl.gyp')
-rw-r--r-- | o3d/build/nacl.gyp | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/o3d/build/nacl.gyp b/o3d/build/nacl.gyp index 19b4de5..e69de29 100644 --- a/o3d/build/nacl.gyp +++ b/o3d/build/nacl.gyp @@ -1,52 +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. - -{ - 'variables': { - 'chromium_code': 1, - }, - 'includes': [ - 'common.gypi', - ], - 'targets': [ - { - 'target_name': 'build_nacl', - 'type': 'none', - 'variables': { - 'nacl_output_dir': '<(SHARED_INTERMEDIATE_DIR)/nacl_libs', - }, - 'actions': [ - { - 'action_name': 'build_nacl', - 'inputs' : [ - 'build_nacl.py', - ], - 'outputs': [ - '<(nacl_output_dir)/google_nacl_imc<(LIBRARY_SUFFIX)', - '<(nacl_output_dir)/google_nacl_imc_c<(LIBRARY_SUFFIX)', - 'dummy_file_that_never_gets_built_so_scons_always_runs', - ], - 'action': [ - 'python', - '<@(_inputs)', - '--output="<(nacl_output_dir)"', - '--configuration="<(CONFIGURATION)"', - '--platform=<(OS)', - 'google_nacl_imc', - 'google_nacl_imc_c', - ], - }, - ], - 'direct_dependent_settings': { - 'include_dirs': [ - '../../<(nacldir)', - ], - 'libraries': [ - '<(nacl_output_dir)/google_nacl_imc<(LIBRARY_SUFFIX)', - '<(nacl_output_dir)/google_nacl_imc_c<(LIBRARY_SUFFIX)', - ], - }, - }, - ], -} |