| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 }, | 275 }, |
| 276 'sources': [ | 276 'sources': [ |
| 277 'app/chrome_command_ids.h', | 277 'app/chrome_command_ids.h', |
| 278 'app/chrome_dll_resource.h', | 278 'app/chrome_dll_resource.h', |
| 279 'app/chrome_main.cc', | 279 'app/chrome_main.cc', |
| 280 'app/chrome_main_delegate.cc', | 280 'app/chrome_main_delegate.cc', |
| 281 'app/chrome_main_delegate.h', | 281 'app/chrome_main_delegate.h', |
| 282 'app/chrome_main_mac.mm', | 282 'app/chrome_main_mac.mm', |
| 283 'app/chrome_main_mac.h', | 283 'app/chrome_main_mac.h', |
| 284 ], | 284 ], |
| 285 'dependencies': [ |
| 286 '../pdf/pdf.gyp:pdf', |
| 287 ], |
| 285 'include_dirs': [ | 288 'include_dirs': [ |
| 286 '<(grit_out_dir)', | 289 '<(grit_out_dir)', |
| 287 ], | 290 ], |
| 288 'postbuilds': [ | 291 'postbuilds': [ |
| 289 { | 292 { |
| 290 # This step causes an error to be raised if the .order file | 293 # This step causes an error to be raised if the .order file |
| 291 # does not account for all global text symbols. It | 294 # does not account for all global text symbols. It |
| 292 # validates the completeness of the .order file. | 295 # validates the completeness of the .order file. |
| 293 'postbuild_name': 'Verify global text symbol order', | 296 'postbuild_name': 'Verify global text symbol order', |
| 294 'variables': { | 297 'variables': { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 312 'app/chrome_breakpad_client.cc', | 315 'app/chrome_breakpad_client.cc', |
| 313 'app/chrome_breakpad_client.h', | 316 'app/chrome_breakpad_client.h', |
| 314 'app/chrome_breakpad_client_mac.mm', | 317 'app/chrome_breakpad_client_mac.mm', |
| 315 ], | 318 ], |
| 316 }, { # else: mac_breakpad_compiled_in!=1 | 319 }, { # else: mac_breakpad_compiled_in!=1 |
| 317 # No Breakpad, put in the stubs. | 320 # No Breakpad, put in the stubs. |
| 318 'dependencies': [ | 321 'dependencies': [ |
| 319 '../components/components.gyp:breakpad_stubs', | 322 '../components/components.gyp:breakpad_stubs', |
| 320 ], | 323 ], |
| 321 }], # mac_breakpad_compiled_in | 324 }], # mac_breakpad_compiled_in |
| 322 ['internal_pdf', { | |
| 323 'dependencies': [ | |
| 324 '../pdf/pdf.gyp:pdf', | |
| 325 ], | |
| 326 }], | |
| 327 ], # conditions | 325 ], # conditions |
| 328 }], # OS=="mac" | 326 }], # OS=="mac" |
| 329 ], # conditions | 327 ], # conditions |
| 330 }, # target chrome_main_dll | 328 }, # target chrome_main_dll |
| 331 ], # targets | 329 ], # targets |
| 332 }], # OS=="mac" or OS=="win" | 330 }], # OS=="mac" or OS=="win" |
| 333 ['OS=="win"', { | 331 ['OS=="win"', { |
| 334 'targets': [ | 332 'targets': [ |
| 335 { | 333 { |
| 336 # This target is only depended upon on Windows. | 334 # This target is only depended upon on Windows. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 }, | 397 }, |
| 400 }], | 398 }], |
| 401 ] | 399 ] |
| 402 }], | 400 }], |
| 403 ], | 401 ], |
| 404 }, # target chrome_child_dll | 402 }, # target chrome_child_dll |
| 405 ], | 403 ], |
| 406 }], | 404 }], |
| 407 ], | 405 ], |
| 408 } | 406 } |
| OLD | NEW |