| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 'src/common/linux/file_id.cc', | 229 'src/common/linux/file_id.cc', |
| 230 'src/common/linux/file_id.h', | 230 'src/common/linux/file_id.h', |
| 231 'src/common/linux/guid_creator.h', | 231 'src/common/linux/guid_creator.h', |
| 232 'src/common/module.cc', | 232 'src/common/module.cc', |
| 233 'src/common/module.h', | 233 'src/common/module.h', |
| 234 'src/common/stabs_reader.cc', | 234 'src/common/stabs_reader.cc', |
| 235 'src/common/stabs_reader.h', | 235 'src/common/stabs_reader.h', |
| 236 'src/tools/linux/dump_syms/dump_syms.cc', | 236 'src/tools/linux/dump_syms/dump_syms.cc', |
| 237 ], | 237 ], |
| 238 | 238 |
| 239 # Using this define, stabs_reader.h will include the right headers | |
| 240 # to work correctly on Linux. | |
| 241 'defines': [ | |
| 242 'HAVE_A_OUT_H', | |
| 243 ], | |
| 244 | |
| 245 'include_dirs': [ | 239 'include_dirs': [ |
| 246 'src', | 240 'src', |
| 247 '..', | 241 '..', |
| 248 ], | 242 ], |
| 249 }, | 243 }, |
| 250 ], | 244 ], |
| 251 }], | 245 }], |
| 252 ], | 246 ], |
| 253 'targets': [ | 247 'targets': [ |
| 254 { | 248 { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 ], | 336 ], |
| 343 }], | 337 }], |
| 344 ], | 338 ], |
| 345 } | 339 } |
| 346 | 340 |
| 347 # Local Variables: | 341 # Local Variables: |
| 348 # tab-width:2 | 342 # tab-width:2 |
| 349 # indent-tabs-mode:nil | 343 # indent-tabs-mode:nil |
| 350 # End: | 344 # End: |
| 351 # vim: set expandtab tabstop=2 shiftwidth=2: | 345 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |