OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 13 matching lines...) Expand all Loading... |
24 'include_dirs': [ '.' ], | 24 'include_dirs': [ '.' ], |
25 }, | 25 }, |
26 'sources': [ | 26 'sources': [ |
27 # TODO(ellyjones): http://crbug.com/485144 | 27 # TODO(ellyjones): http://crbug.com/485144 |
28 '../../net/url_request/sdch_dictionary_fetcher.cc', | 28 '../../net/url_request/sdch_dictionary_fetcher.cc', |
29 '../../net/url_request/sdch_dictionary_fetcher.h', | 29 '../../net/url_request/sdch_dictionary_fetcher.h', |
30 'CrNet.h', | 30 'CrNet.h', |
31 'CrNet.mm', | 31 'CrNet.mm', |
32 'crnet_environment.h', | 32 'crnet_environment.h', |
33 'crnet_environment.mm', | 33 'crnet_environment.mm', |
| 34 'sdch_owner_pref_storage.cc', |
| 35 'sdch_owner_pref_storage.h', |
34 ], | 36 ], |
35 'defines': [ | 37 'defines': [ |
36 # TODO(stuartmorgan): Revisit the way this is set, and the above is | 38 # TODO(stuartmorgan): Revisit the way this is set, and the above is |
37 # built, once the web/ layer is complete. Note that this setting doesn't | 39 # built, once the web/ layer is complete. Note that this setting doesn't |
38 # propagate to any included targets. | 40 # propagate to any included targets. |
39 'CRNET=1', | 41 'CRNET=1', |
40 ], | 42 ], |
41 'xcode_settings': { | 43 'xcode_settings': { |
42 'DEAD_CODE_STRIPPING': 'YES', | 44 'DEAD_CODE_STRIPPING': 'YES', |
43 }, | 45 }, |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'all_dependent_settings': { | 110 'all_dependent_settings': { |
109 'link_settings': { | 111 'link_settings': { |
110 'mac_bundle_resources': [ | 112 'mac_bundle_resources': [ |
111 '>(PRODUCT_DIR)/crnet_resources.bundle', | 113 '>(PRODUCT_DIR)/crnet_resources.bundle', |
112 ], | 114 ], |
113 }, | 115 }, |
114 }, | 116 }, |
115 }, | 117 }, |
116 ], | 118 ], |
117 } | 119 } |
OLD | NEW |