OLD | NEW |
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.ApplySConscript([ | 9 env.ApplySConscript([ |
10 '$BASE_DIR/using_base.scons', | 10 '$BASE_DIR/using_base.scons', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 input_files = [ | 44 input_files = [ |
45 'test_chrome_plugin.cc', | 45 'test_chrome_plugin.cc', |
46 ] | 46 ] |
47 | 47 |
48 if env.Bit('windows'): | 48 if env.Bit('windows'): |
49 input_files.extend([ | 49 input_files.extend([ |
50 'test_chrome_plugin.def', | 50 'test_chrome_plugin.def', |
51 ]) | 51 ]) |
52 | 52 |
53 env.ChromeSharedLibrary('test_chrome_plugin', input_files) | 53 env.ChromeSharedLibrary('test_chrome_plugin', input_files) |
| 54 |
| 55 env.ChromeMSVSProject('$CHROME_DIR/test/chrome_plugin/test_chrome_plugin.vcproj'
, |
| 56 dependencies = [ |
| 57 '$BASE_DIR/build/base.vcproj', |
| 58 '$ICU38_DIR/build/icu.vcproj', |
| 59 '$ICU38_DIR/build/icudt.vcproj', |
| 60 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 61 ], |
| 62 guid='{7F0A70F6-BE3F-4C19-B435-956AB8F30BA4}') |
OLD | NEW |