| 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': 'chrome', | 8 'target_name': 'chrome', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 'ldflags': [ | 57 'ldflags': [ |
| 58 '-Wl,-section-ordering-file=<(order_text_section)' ], | 58 '-Wl,-section-ordering-file=<(order_text_section)' ], |
| 59 }], | 59 }], |
| 60 ] | 60 ] |
| 61 }], | 61 }], |
| 62 ['OS == "win" and use_aura==1', { | 62 ['OS == "win" and use_aura==1', { |
| 63 'sources!': [ | 63 'sources!': [ |
| 64 # We still want the _win entry point for sandbox, etc. | 64 # We still want the _win entry point for sandbox, etc. |
| 65 'app/chrome_exe_main_aura.cc', | 65 'app/chrome_exe_main_aura.cc', |
| 66 ], | 66 ], |
| 67 'dependencies': [ |
| 68 '../ui/gfx/gfx.gyp:gfx', |
| 69 ], |
| 67 }], | 70 }], |
| 68 ['OS == "android"', { | 71 ['OS == "android"', { |
| 69 # Don't put the 'chrome' target in 'all' on android | 72 # Don't put the 'chrome' target in 'all' on android |
| 70 'suppress_wildcard': 1, | 73 'suppress_wildcard': 1, |
| 71 }], | 74 }], |
| 72 ['os_posix == 1 and OS != "mac" and OS != "android"', { | 75 ['os_posix == 1 and OS != "mac" and OS != "android"', { |
| 73 'actions': [ | 76 'actions': [ |
| 74 { | 77 { |
| 75 'action_name': 'manpage', | 78 'action_name': 'manpage', |
| 76 'conditions': [ | 79 'conditions': [ |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 'dependencies': [ | 654 'dependencies': [ |
| 652 'chrome_nacl_win64', | 655 'chrome_nacl_win64', |
| 653 ], | 656 ], |
| 654 }], | 657 }], |
| 655 ], | 658 ], |
| 656 }, | 659 }, |
| 657 ], | 660 ], |
| 658 }], | 661 }], |
| 659 ], | 662 ], |
| 660 } | 663 } |
| OLD | NEW |