| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 5 'variables': { |
| 6 # TODO(rouslan): Use the src/ directory. http://crbug.com/327046 | 6 # TODO(rouslan): Use the src/ directory. http://crbug.com/327046 |
| 7 'libaddressinput_dir': 'chromium', | 7 'libaddressinput_dir': 'chromium', |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 'type': '<(gtest_target_type)', | 115 'type': '<(gtest_target_type)', |
| 116 'include_dirs': [ | 116 'include_dirs': [ |
| 117 '<(DEPTH)', | 117 '<(DEPTH)', |
| 118 '<(libaddressinput_dir)/cpp/src/', | 118 '<(libaddressinput_dir)/cpp/src/', |
| 119 '<(DEPTH)/testing/gtest/include/', | 119 '<(DEPTH)/testing/gtest/include/', |
| 120 '<(SHARED_INTERMEDIATE_DIR)/libaddressinput/', | 120 '<(SHARED_INTERMEDIATE_DIR)/libaddressinput/', |
| 121 ], | 121 ], |
| 122 'sources': [ | 122 'sources': [ |
| 123 'chromium/chrome_downloader_impl_unittest.cc', | 123 'chromium/chrome_downloader_impl_unittest.cc', |
| 124 'chromium/chrome_storage_impl_unittest.cc', | 124 'chromium/chrome_storage_impl_unittest.cc', |
| 125 '<(libaddressinput_dir)/cpp/test/address_data_test.cc', |
| 125 '<(libaddressinput_dir)/cpp/test/address_ui_test.cc', | 126 '<(libaddressinput_dir)/cpp/test/address_ui_test.cc', |
| 126 '<(libaddressinput_dir)/cpp/test/fake_downloader.cc', | 127 '<(libaddressinput_dir)/cpp/test/fake_downloader.cc', |
| 127 '<(libaddressinput_dir)/cpp/test/fake_downloader.h', | 128 '<(libaddressinput_dir)/cpp/test/fake_downloader.h', |
| 128 '<(libaddressinput_dir)/cpp/test/fake_downloader_test.cc', | 129 '<(libaddressinput_dir)/cpp/test/fake_downloader_test.cc', |
| 129 '<(libaddressinput_dir)/cpp/test/fake_storage.cc', | 130 '<(libaddressinput_dir)/cpp/test/fake_storage.cc', |
| 130 '<(libaddressinput_dir)/cpp/test/fake_storage.h', | 131 '<(libaddressinput_dir)/cpp/test/fake_storage.h', |
| 131 '<(libaddressinput_dir)/cpp/test/fake_storage_test.cc', | 132 '<(libaddressinput_dir)/cpp/test/fake_storage_test.cc', |
| 132 '<(libaddressinput_dir)/cpp/test/localization_test.cc', | 133 '<(libaddressinput_dir)/cpp/test/localization_test.cc', |
| 133 '<(libaddressinput_dir)/cpp/test/lookup_key_util_test.cc', | 134 '<(libaddressinput_dir)/cpp/test/lookup_key_util_test.cc', |
| 134 '<(libaddressinput_dir)/cpp/test/region_data_constants_test.cc', | 135 '<(libaddressinput_dir)/cpp/test/region_data_constants_test.cc', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 149 'dependencies': [ | 150 'dependencies': [ |
| 150 'libaddressinput', | 151 'libaddressinput', |
| 151 '<(DEPTH)/base/base.gyp:base_prefs', | 152 '<(DEPTH)/base/base.gyp:base_prefs', |
| 152 '<(DEPTH)/base/base.gyp:run_all_unittests', | 153 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 153 '<(DEPTH)/net/net.gyp:net_test_support', | 154 '<(DEPTH)/net/net.gyp:net_test_support', |
| 154 '<(DEPTH)/testing/gtest.gyp:gtest', | 155 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 155 ], | 156 ], |
| 156 }, | 157 }, |
| 157 ], | 158 ], |
| 158 } | 159 } |
| OLD | NEW |