| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'type': '<(gtest_target_type)', | 111 'type': '<(gtest_target_type)', |
| 112 'include_dirs': [ | 112 'include_dirs': [ |
| 113 '<(DEPTH)', | 113 '<(DEPTH)', |
| 114 '<(libaddressinput_dir)/cpp/src/', | 114 '<(libaddressinput_dir)/cpp/src/', |
| 115 '<(DEPTH)/testing/gtest/include/', | 115 '<(DEPTH)/testing/gtest/include/', |
| 116 '<(SHARED_INTERMEDIATE_DIR)/libaddressinput/', | 116 '<(SHARED_INTERMEDIATE_DIR)/libaddressinput/', |
| 117 ], | 117 ], |
| 118 'sources': [ | 118 'sources': [ |
| 119 'chromium/chrome_downloader_impl_unittest.cc', | 119 'chromium/chrome_downloader_impl_unittest.cc', |
| 120 'chromium/chrome_storage_impl_unittest.cc', | 120 'chromium/chrome_storage_impl_unittest.cc', |
| 121 '<(libaddressinput_dir)/cpp/test/address_data_test.cc', |
| 121 '<(libaddressinput_dir)/cpp/test/address_ui_test.cc', | 122 '<(libaddressinput_dir)/cpp/test/address_ui_test.cc', |
| 122 '<(libaddressinput_dir)/cpp/test/fake_downloader.cc', | 123 '<(libaddressinput_dir)/cpp/test/fake_downloader.cc', |
| 123 '<(libaddressinput_dir)/cpp/test/fake_downloader.h', | 124 '<(libaddressinput_dir)/cpp/test/fake_downloader.h', |
| 124 '<(libaddressinput_dir)/cpp/test/fake_downloader_test.cc', | 125 '<(libaddressinput_dir)/cpp/test/fake_downloader_test.cc', |
| 125 '<(libaddressinput_dir)/cpp/test/fake_storage.cc', | 126 '<(libaddressinput_dir)/cpp/test/fake_storage.cc', |
| 126 '<(libaddressinput_dir)/cpp/test/fake_storage.h', | 127 '<(libaddressinput_dir)/cpp/test/fake_storage.h', |
| 127 '<(libaddressinput_dir)/cpp/test/fake_storage_test.cc', | 128 '<(libaddressinput_dir)/cpp/test/fake_storage_test.cc', |
| 128 '<(libaddressinput_dir)/cpp/test/region_data_constants_test.cc', | 129 '<(libaddressinput_dir)/cpp/test/region_data_constants_test.cc', |
| 129 '<(libaddressinput_dir)/cpp/test/retriever_test.cc', | 130 '<(libaddressinput_dir)/cpp/test/retriever_test.cc', |
| 130 '<(libaddressinput_dir)/cpp/test/rule_test.cc', | 131 '<(libaddressinput_dir)/cpp/test/rule_test.cc', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 144 'libaddressinput', | 145 'libaddressinput', |
| 145 'libaddressinput_strings', | 146 'libaddressinput_strings', |
| 146 '<(DEPTH)/base/base.gyp:base_prefs', | 147 '<(DEPTH)/base/base.gyp:base_prefs', |
| 147 '<(DEPTH)/base/base.gyp:run_all_unittests', | 148 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 148 '<(DEPTH)/net/net.gyp:net_test_support', | 149 '<(DEPTH)/net/net.gyp:net_test_support', |
| 149 '<(DEPTH)/testing/gtest.gyp:gtest', | 150 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 150 ], | 151 ], |
| 151 }, | 152 }, |
| 152 ], | 153 ], |
| 153 } | 154 } |
| OLD | NEW |