| 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 4128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4139 '../third_party/protobuf/protobuf.gyp:protoc', | 4139 '../third_party/protobuf/protobuf.gyp:protoc', |
| 4140 ], | 4140 ], |
| 4141 'action': [ | 4141 'action': [ |
| 4142 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFI
X)', | 4142 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFI
X)', |
| 4143 'browser/metrics/system_metrics.proto', | 4143 'browser/metrics/system_metrics.proto', |
| 4144 '--cpp_out=<(INTERMEDIATE_DIR)/chrome', | 4144 '--cpp_out=<(INTERMEDIATE_DIR)/chrome', |
| 4145 ], | 4145 ], |
| 4146 }, | 4146 }, |
| 4147 ], | 4147 ], |
| 4148 }], | 4148 }], |
| 4149 ['OS=="linux" and gcc_version==45', { | 4149 ['OS=="linux" and gxx_version==45', { |
| 4150 # Avoid gcc 4.5 miscompilation of template_url.cc | 4150 # Avoid g++ 4.5 miscompilation of template_url.cc |
| 4151 # as per http://crbug.com/41887 | 4151 # as per http://crbug.com/41887 |
| 4152 'cflags': [ | 4152 'cflags': [ |
| 4153 '-fno-ipa-cp', | 4153 '-fno-ipa-cp', |
| 4154 ], | 4154 ], |
| 4155 }], | 4155 }], |
| 4156 ], | 4156 ], |
| 4157 # Exclude files that should be excluded for all non-Windows platforms. | 4157 # Exclude files that should be excluded for all non-Windows platforms. |
| 4158 'sources!': [ | 4158 'sources!': [ |
| 4159 'browser/accessibility/browser_accessibility_win.cc', | 4159 'browser/accessibility/browser_accessibility_win.cc', |
| 4160 'browser/accessibility/browser_accessibility_win.h', | 4160 'browser/accessibility/browser_accessibility_win.h', |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4315 ], | 4315 ], |
| 4316 }, | 4316 }, |
| 4317 ], | 4317 ], |
| 4318 } | 4318 } |
| 4319 | 4319 |
| 4320 # Local Variables: | 4320 # Local Variables: |
| 4321 # tab-width:2 | 4321 # tab-width:2 |
| 4322 # indent-tabs-mode:nil | 4322 # indent-tabs-mode:nil |
| 4323 # End: | 4323 # End: |
| 4324 # vim: set expandtab tabstop=2 shiftwidth=2: | 4324 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |