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 { | 5 { |
6 'include_dirs': [ | 6 'include_dirs': [ |
7 '..', | 7 '..', |
8 ], | 8 ], |
9 'defines': [ | 9 'defines': [ |
10 'SYNC_IMPLEMENTATION', | 10 'SYNC_IMPLEMENTATION', |
11 ], | 11 ], |
12 'dependencies': [ | 12 'dependencies': [ |
13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
14 '../base/base.gyp:base_i18n', | 14 '../base/base.gyp:base_i18n', |
15 '../build/temp_gyp/googleurl.gyp:googleurl', | |
16 '../crypto/crypto.gyp:crypto', | 15 '../crypto/crypto.gyp:crypto', |
17 '../google_apis/google_apis.gyp:google_apis', | 16 '../google_apis/google_apis.gyp:google_apis', |
18 '../net/net.gyp:net', | 17 '../net/net.gyp:net', |
19 '../sql/sql.gyp:sql', | 18 '../sql/sql.gyp:sql', |
| 19 '../url/url.gyp:url_lib', |
20 ], | 20 ], |
21 'conditions': [ | 21 'conditions': [ |
22 ['OS=="linux" and chromeos==1', { | 22 ['OS=="linux" and chromeos==1', { |
23 # Required by get_session_name.cc on Chrome OS. | 23 # Required by get_session_name.cc on Chrome OS. |
24 'dependencies': [ | 24 'dependencies': [ |
25 '../chromeos/chromeos.gyp:chromeos', | 25 '../chromeos/chromeos.gyp:chromeos', |
26 ], | 26 ], |
27 }], | 27 }], |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 'util/get_session_name_win.cc', | 188 'util/get_session_name_win.cc', |
189 'util/get_session_name_win.h', | 189 'util/get_session_name_win.h', |
190 'util/logging.cc', | 190 'util/logging.cc', |
191 'util/logging.h', | 191 'util/logging.h', |
192 'util/nigori.cc', | 192 'util/nigori.cc', |
193 'util/nigori.h', | 193 'util/nigori.h', |
194 'util/time.cc', | 194 'util/time.cc', |
195 'util/time.h', | 195 'util/time.h', |
196 ], | 196 ], |
197 } | 197 } |
OLD | NEW |