| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 5260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5271 '../third_party/protobuf/protobuf.gyp:protoc', | 5271 '../third_party/protobuf/protobuf.gyp:protoc', |
| 5272 ], | 5272 ], |
| 5273 'action': [ | 5273 'action': [ |
| 5274 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFI
X)', | 5274 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFI
X)', |
| 5275 'browser/metrics/system_metrics.proto', | 5275 'browser/metrics/system_metrics.proto', |
| 5276 '--cpp_out=<(INTERMEDIATE_DIR)/chrome', | 5276 '--cpp_out=<(INTERMEDIATE_DIR)/chrome', |
| 5277 ], | 5277 ], |
| 5278 }, | 5278 }, |
| 5279 ], | 5279 ], |
| 5280 }], | 5280 }], |
| 5281 ['os_posix == 1 and OS != "mac" and gcc_version == 45', { | 5281 ['os_posix == 1 and OS != "mac" and OS != "android" and gcc_version
== 45', { |
| 5282 # Avoid gcc 4.5 miscompilation of template_url.cc | 5282 # Avoid gcc 4.5 miscompilation of template_url.cc |
| 5283 # as per http://crbug.com/41887 | 5283 # as per http://crbug.com/41887 |
| 5284 'cflags': [ | 5284 'cflags': [ |
| 5285 '-fno-ipa-cp', | 5285 '-fno-ipa-cp', |
| 5286 ], | 5286 ], |
| 5287 }], | 5287 }], |
| 5288 ], | 5288 ], |
| 5289 # Exclude files that should be excluded for all non-Windows platforms. | 5289 # Exclude files that should be excluded for all non-Windows platforms. |
| 5290 'sources!': [ | 5290 'sources!': [ |
| 5291 'browser/accessibility/browser_accessibility_manager_win.cc', | 5291 'browser/accessibility/browser_accessibility_manager_win.cc', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5468 'type': 'static_library', | 5468 'type': 'static_library', |
| 5469 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], | 5469 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], |
| 5470 'variables': { | 5470 'variables': { |
| 5471 'proto_in_dir': 'browser/history', | 5471 'proto_in_dir': 'browser/history', |
| 5472 'proto_out_dir': 'chrome/browser/history', | 5472 'proto_out_dir': 'chrome/browser/history', |
| 5473 }, | 5473 }, |
| 5474 'includes': [ '../build/protoc.gypi' ] | 5474 'includes': [ '../build/protoc.gypi' ] |
| 5475 }, | 5475 }, |
| 5476 ], | 5476 ], |
| 5477 } | 5477 } |
| OLD | NEW |