| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 ) | 55 ) |
| 56 | 56 |
| 57 input_files = [ | 57 input_files = [ |
| 58 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', | 58 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', |
| 59 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 59 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
| 60 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 60 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
| 61 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 61 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
| 62 'memory_test.cc', | 62 'memory_test.cc', |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 env.ChromeTestProgram('memory_test', input_files) | 65 # TODO(port): |
| 66 if env.Bit('windows'): |
| 67 env.ChromeTestProgram('memory_test', input_files) |
| 68 |
| 69 env.ChromeMSVSProject('$CHROME_DIR/test/memory_test/memory_test.vcproj', |
| 70 dependencies = [ |
| 71 '$CHROME_DIR/test/automation/automation.vcproj', |
| 72 '$BASE_DIR/build/base.vcproj', |
| 73 '$NET_DIR/build/net.vcproj', |
| 74 '$CHROME_DIR/browser/browser.vcproj', |
| 75 '$MODP_B64_DIR/modp_b64.vcproj', |
| 76 '$ZLIB_DIR/zlib.vcproj', |
| 77 '$CHROME_DIR/common/common.vcproj', |
| 78 '$BASE_DIR/build/base_gfx.vcproj', |
| 79 '$TESTING_DIR/gtest.vcproj', |
| 80 '$LIBPNG_DIR/libpng.vcproj', |
| 81 '$SKIA_DIR/skia.vcproj', |
| 82 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 83 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 84 ], |
| 85 guid='{A5F831FD-9B9C-4FEF-9FBA-554817B734CE}') |
| OLD | NEW |