| 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 23 matching lines...) Expand all Loading... |
| 34 ], | 34 ], |
| 35 'sources': [ | 35 'sources': [ |
| 36 'app/chrome_command_ids.h', | 36 'app/chrome_command_ids.h', |
| 37 'app/chrome_dll.rc', | 37 'app/chrome_dll.rc', |
| 38 'app/chrome_dll_resource.h', | 38 'app/chrome_dll_resource.h', |
| 39 'app/chrome_main.cc', | 39 'app/chrome_main.cc', |
| 40 'app/chrome_main_delegate.cc', | 40 'app/chrome_main_delegate.cc', |
| 41 'app/chrome_main_delegate.h', | 41 'app/chrome_main_delegate.h', |
| 42 | 42 |
| 43 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', | 43 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', |
| 44 '../base/win/dllmain.cc', |
| 44 | 45 |
| 45 '../webkit/glue/resources/aliasb.cur', | 46 '../webkit/glue/resources/aliasb.cur', |
| 46 '../webkit/glue/resources/cell.cur', | 47 '../webkit/glue/resources/cell.cur', |
| 47 '../webkit/glue/resources/col_resize.cur', | 48 '../webkit/glue/resources/col_resize.cur', |
| 48 '../webkit/glue/resources/copy.cur', | 49 '../webkit/glue/resources/copy.cur', |
| 49 '../webkit/glue/resources/none.cur', | 50 '../webkit/glue/resources/none.cur', |
| 50 '../webkit/glue/resources/row_resize.cur', | 51 '../webkit/glue/resources/row_resize.cur', |
| 51 '../webkit/glue/resources/vertical_text.cur', | 52 '../webkit/glue/resources/vertical_text.cur', |
| 52 '../webkit/glue/resources/zoom_in.cur', | 53 '../webkit/glue/resources/zoom_in.cur', |
| 53 '../webkit/glue/resources/zoom_out.cur', | 54 '../webkit/glue/resources/zoom_out.cur', |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 ], | 498 ], |
| 498 }], | 499 }], |
| 499 ], # conditions | 500 ], # conditions |
| 500 }], # OS=="mac" | 501 }], # OS=="mac" |
| 501 ], # conditions | 502 ], # conditions |
| 502 }, # target chrome_dll | 503 }, # target chrome_dll |
| 503 ], # targets | 504 ], # targets |
| 504 }], # OS=="mac" or OS=="win" | 505 }], # OS=="mac" or OS=="win" |
| 505 ], | 506 ], |
| 506 } | 507 } |
| OLD | NEW |