| 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 'crnet_net_log.h', | |
| 35 'crnet_net_log.cc', | |
| 36 ], | 34 ], |
| 37 'defines': [ | 35 'defines': [ |
| 38 # TODO(stuartmorgan): Revisit the way this is set, and the above is | 36 # TODO(stuartmorgan): Revisit the way this is set, and the above is |
| 39 # built, once the web/ layer is complete. Note that this setting doesn't | 37 # built, once the web/ layer is complete. Note that this setting doesn't |
| 40 # propagate to any included targets. | 38 # propagate to any included targets. |
| 41 'CRNET=1', | 39 'CRNET=1', |
| 42 ], | 40 ], |
| 43 'xcode_settings': { | 41 'xcode_settings': { |
| 44 'DEAD_CODE_STRIPPING': 'YES', | 42 'DEAD_CODE_STRIPPING': 'YES', |
| 45 }, | 43 }, |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'all_dependent_settings': { | 108 'all_dependent_settings': { |
| 111 'link_settings': { | 109 'link_settings': { |
| 112 'mac_bundle_resources': [ | 110 'mac_bundle_resources': [ |
| 113 '>(PRODUCT_DIR)/crnet_resources.bundle', | 111 '>(PRODUCT_DIR)/crnet_resources.bundle', |
| 114 ], | 112 ], |
| 115 }, | 113 }, |
| 116 }, | 114 }, |
| 117 }, | 115 }, |
| 118 ], | 116 ], |
| 119 } | 117 } |
| OLD | NEW |