Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
| 7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
| 8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
| 9 ], | 9 ], |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 179 'src/client/mac/handler/exception_handler.cc', | 179 'src/client/mac/handler/exception_handler.cc', |
| 180 'src/client/mac/Framework/Breakpad.mm', | 180 'src/client/mac/Framework/Breakpad.mm', |
| 181 'src/client/mac/Framework/OnDemandServer.mm', | 181 'src/client/mac/Framework/OnDemandServer.mm', |
| 182 ], | 182 ], |
| 183 }, | 183 }, |
| 184 ], | 184 ], |
| 185 }], | 185 }], |
| 186 [ 'OS=="linux"', { | 186 [ 'OS=="linux"', { |
| 187 'conditions': [ | 187 'conditions': [ |
| 188 # Tools needed for archiving build symbols. | 188 # Tools needed for archiving build symbols. |
| 189 ['branding=="Chrome" or linux_breakpad==1', { | 189 ['linux_breakpad==1', { |
|
Michael Moss
2010/08/31 18:22:54
So this won't automatically happen for official bu
| |
| 190 'targets': [ | 190 'targets': [ |
| 191 { | 191 { |
| 192 'target_name': 'symupload', | 192 'target_name': 'symupload', |
| 193 'type': 'executable', | 193 'type': 'executable', |
| 194 | 194 |
| 195 # This uses the system libcurl, so don't use the default 32-bit | 195 # This uses the system libcurl, so don't use the default 32-bit |
| 196 # compile flags when building on a 64-bit machine. | 196 # compile flags when building on a 64-bit machine. |
| 197 'variables': { | 197 'variables': { |
| 198 'host_arch': '<!(uname -m)', | 198 'host_arch': '<!(uname -m)', |
| 199 }, | 199 }, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 250 'src/common/module.cc', | 250 'src/common/module.cc', |
| 251 'src/common/module.h', | 251 'src/common/module.h', |
| 252 'src/common/stabs_reader.cc', | 252 'src/common/stabs_reader.cc', |
| 253 'src/common/stabs_reader.h', | 253 'src/common/stabs_reader.h', |
| 254 'src/common/stabs_to_module.cc', | 254 'src/common/stabs_to_module.cc', |
| 255 'src/common/stabs_to_module.h', | 255 'src/common/stabs_to_module.h', |
| 256 'src/tools/linux/dump_syms/dump_syms.cc', | 256 'src/tools/linux/dump_syms/dump_syms.cc', |
| 257 ], | 257 ], |
| 258 | 258 |
| 259 # Breakpad rev 583 introduced this flag. | 259 # Breakpad rev 583 introduced this flag. |
| 260 # Using this define, stabs_reader.h will include a.out.h to | 260 # Using this define, stabs_reader.h will include a.out.h to |
| 261 # build on Linux. | 261 # build on Linux. |
| 262 'defines': [ | 262 'defines': [ |
| 263 'HAVE_A_OUT_H', | 263 'HAVE_A_OUT_H', |
| 264 ], | 264 ], |
| 265 | 265 |
| 266 'include_dirs': [ | 266 'include_dirs': [ |
| 267 'src', | 267 'src', |
| 268 '..', | 268 '..', |
| 269 ], | 269 ], |
| 270 }, | 270 }, |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 382 ], | 382 ], |
| 383 }], | 383 }], |
| 384 ], | 384 ], |
| 385 } | 385 } |
| 386 | 386 |
| 387 # Local Variables: | 387 # Local Variables: |
| 388 # tab-width:2 | 388 # tab-width:2 |
| 389 # indent-tabs-mode:nil | 389 # indent-tabs-mode:nil |
| 390 # End: | 390 # End: |
| 391 # vim: set expandtab tabstop=2 shiftwidth=2: | 391 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |