| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 '../testing/gtest.gyp:gtest', | 58 '../testing/gtest.gyp:gtest', |
| 59 '../third_party/sqlite/sqlite.gyp:sqlite', | 59 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 60 ], | 60 ], |
| 61 'export_dependent_settings': [ | 61 'export_dependent_settings': [ |
| 62 'sql', | 62 'sql', |
| 63 '../base/base.gyp:base', | 63 '../base/base.gyp:base', |
| 64 ], | 64 ], |
| 65 'sources': [ | 65 'sources': [ |
| 66 'test/error_callback_support.cc', | 66 'test/error_callback_support.cc', |
| 67 'test/error_callback_support.h', | 67 'test/error_callback_support.h', |
| 68 'test/scoped_error_ignorer.cc', | 68 'test/scoped_error_expecter.cc', |
| 69 'test/scoped_error_ignorer.h', | 69 'test/scoped_error_expecter.h', |
| 70 'test/test_helpers.cc', | 70 'test/test_helpers.cc', |
| 71 'test/test_helpers.h', | 71 'test/test_helpers.h', |
| 72 ], | 72 ], |
| 73 'include_dirs': [ | 73 'include_dirs': [ |
| 74 '..', | 74 '..', |
| 75 ], | 75 ], |
| 76 'direct_dependent_settings': { | 76 'direct_dependent_settings': { |
| 77 'include_dirs': [ | 77 'include_dirs': [ |
| 78 '..', | 78 '..', |
| 79 ], | 79 ], |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 '../build/isolate.gypi', | 179 '../build/isolate.gypi', |
| 180 ], | 180 ], |
| 181 'sources': [ | 181 'sources': [ |
| 182 'sql_unittests.isolate', | 182 'sql_unittests.isolate', |
| 183 ], | 183 ], |
| 184 }, | 184 }, |
| 185 ], | 185 ], |
| 186 }], | 186 }], |
| 187 ], | 187 ], |
| 188 } | 188 } |
| OLD | NEW |