| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'shared_library', | 10 'type': 'shared_library', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ], | 43 ], |
| 44 'sources': [ | 44 'sources': [ |
| 45 'app/chrome_command_ids.h', | 45 'app/chrome_command_ids.h', |
| 46 'app/chrome_dll.rc', | 46 'app/chrome_dll.rc', |
| 47 'app/chrome_dll_resource.h', | 47 'app/chrome_dll_resource.h', |
| 48 'app/chrome_main.cc', | 48 'app/chrome_main.cc', |
| 49 'app/chrome_main_delegate.cc', | 49 'app/chrome_main_delegate.cc', |
| 50 'app/chrome_main_delegate.h', | 50 'app/chrome_main_delegate.h', |
| 51 | 51 |
| 52 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', | 52 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', |
| 53 '../base/win/dllmain.cc', |
| 53 | 54 |
| 54 '../webkit/glue/resources/aliasb.cur', | 55 '../webkit/glue/resources/aliasb.cur', |
| 55 '../webkit/glue/resources/cell.cur', | 56 '../webkit/glue/resources/cell.cur', |
| 56 '../webkit/glue/resources/col_resize.cur', | 57 '../webkit/glue/resources/col_resize.cur', |
| 57 '../webkit/glue/resources/copy.cur', | 58 '../webkit/glue/resources/copy.cur', |
| 58 '../webkit/glue/resources/none.cur', | 59 '../webkit/glue/resources/none.cur', |
| 59 '../webkit/glue/resources/row_resize.cur', | 60 '../webkit/glue/resources/row_resize.cur', |
| 60 '../webkit/glue/resources/vertical_text.cur', | 61 '../webkit/glue/resources/vertical_text.cur', |
| 61 '../webkit/glue/resources/zoom_in.cur', | 62 '../webkit/glue/resources/zoom_in.cur', |
| 62 '../webkit/glue/resources/zoom_out.cur', | 63 '../webkit/glue/resources/zoom_out.cur', |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 ], | 510 ], |
| 510 }], | 511 }], |
| 511 ], # conditions | 512 ], # conditions |
| 512 }], # OS=="mac" | 513 }], # OS=="mac" |
| 513 ], # conditions | 514 ], # conditions |
| 514 }, # target chrome_dll | 515 }, # target chrome_dll |
| 515 ], # targets | 516 ], # targets |
| 516 }], # OS=="mac" or OS=="win" | 517 }], # OS=="mac" or OS=="win" |
| 517 ], | 518 ], |
| 518 } | 519 } |
| OLD | NEW |