| 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': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 }, | 183 }, |
| 184 ], | 184 ], |
| 185 }], | 185 }], |
| 186 # x11 build. Needed for chrome_main.cc initialization of libraries. | 186 # x11 build. Needed for chrome_main.cc initialization of libraries. |
| 187 ['use_x11==1', { | 187 ['use_x11==1', { |
| 188 'dependencies': [ | 188 'dependencies': [ |
| 189 '../build/linux/system.gyp:x11', | 189 '../build/linux/system.gyp:x11', |
| 190 '../build/linux/system.gyp:xext', | 190 '../build/linux/system.gyp:xext', |
| 191 ], | 191 ], |
| 192 }], | 192 }], |
| 193 ['enable_plugins==1', { | 193 ['OS=="linux" and enable_plugins==1', { |
| 194 'dependencies': [ | 194 'dependencies': [ |
| 195 '../pdf/pdf.gyp:pdf', | 195 '../pdf/pdf.gyp:pdf', |
| 196 ], | 196 ], |
| 197 }], | 197 }], |
| 198 ], | 198 ], |
| 199 'sources': [ | 199 'sources': [ |
| 200 'app/chrome_dll_resource.h', | 200 'app/chrome_dll_resource.h', |
| 201 'app/chrome_main.cc', | 201 'app/chrome_main.cc', |
| 202 'app/chrome_main_delegate.cc', | 202 'app/chrome_main_delegate.cc', |
| 203 'app/chrome_main_delegate.h', | 203 'app/chrome_main_delegate.h', |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 'dependencies': [ | 684 'dependencies': [ |
| 685 'chrome_nacl_win64', | 685 'chrome_nacl_win64', |
| 686 ], | 686 ], |
| 687 }], | 687 }], |
| 688 ], | 688 ], |
| 689 }, | 689 }, |
| 690 ], | 690 ], |
| 691 }], | 691 }], |
| 692 ], | 692 ], |
| 693 } | 693 } |
| OLD | NEW |