OLD | NEW |
---|---|
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'browser', | 8 'target_name': 'browser', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', | 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', |
(...skipping 4256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4267 'browser/importer/ie_importer.cc', | 4267 'browser/importer/ie_importer.cc', |
4268 ], | 4268 ], |
4269 }], | 4269 }], |
4270 [ 'use_openssl==1', { | 4270 [ 'use_openssl==1', { |
4271 'sources!': [ | 4271 'sources!': [ |
4272 'browser/importer/nss_decryptor.cc', | 4272 'browser/importer/nss_decryptor.cc', |
4273 'browser/importer/nss_decryptor_system_nss.cc', | 4273 'browser/importer/nss_decryptor_system_nss.cc', |
4274 'browser/importer/nss_decryptor_system_nss.h', | 4274 'browser/importer/nss_decryptor_system_nss.h', |
4275 ], | 4275 ], |
4276 }], | 4276 }], |
4277 ['"ENABLE_CLIENT_BASED_GEOLOCATION=1" in feature_defines', { | |
joth
2010/12/07 10:24:51
this looks unusual, not least because it is = rath
John Knottenbelt
2010/12/07 12:30:04
I'll add a comment in to say that it will disappea
| |
4278 'defines': [ 'ENABLE_CLIENT_BASED_GEOLOCATION=1' ] | |
joth
2010/12/07 10:24:51
ah, I see that explains it, this is a different EN
John Knottenbelt
2010/12/07 12:30:04
The feature_defines array is purely a gyp variable
| |
4279 }], | |
4277 ], | 4280 ], |
4278 }, | 4281 }, |
4279 { | 4282 { |
4280 # Protobuf compiler / generate rule for feedback | 4283 # Protobuf compiler / generate rule for feedback |
4281 'target_name': 'userfeedback_proto', | 4284 'target_name': 'userfeedback_proto', |
4282 'type': 'none', | 4285 'type': 'none', |
4283 'sources': [ | 4286 'sources': [ |
4284 'browser/userfeedback/proto/annotations.proto', | 4287 'browser/userfeedback/proto/annotations.proto', |
4285 'browser/userfeedback/proto/chrome.proto', | 4288 'browser/userfeedback/proto/chrome.proto', |
4286 'browser/userfeedback/proto/common.proto', | 4289 'browser/userfeedback/proto/common.proto', |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4375 ], | 4378 ], |
4376 }, | 4379 }, |
4377 ], | 4380 ], |
4378 } | 4381 } |
4379 | 4382 |
4380 # Local Variables: | 4383 # Local Variables: |
4381 # tab-width:2 | 4384 # tab-width:2 |
4382 # indent-tabs-mode:nil | 4385 # indent-tabs-mode:nil |
4383 # End: | 4386 # End: |
4384 # vim: set expandtab tabstop=2 shiftwidth=2: | 4387 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |