Chromium Code Reviews| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'browser', | 8 'target_name': 'browser', |
| 9 'type': '<(library)', | 9 'type': '<(library)', |
| 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', | 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', |
| (...skipping 3913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3924 }], | 3924 }], |
| 3925 ['OS=="win"', { | 3925 ['OS=="win"', { |
| 3926 'include_dirs': [ | 3926 'include_dirs': [ |
| 3927 '<(DEPTH)/third_party/wtl/include', | 3927 '<(DEPTH)/third_party/wtl/include', |
| 3928 ], | 3928 ], |
| 3929 'dependencies': [ | 3929 'dependencies': [ |
| 3930 '../gears/gears.gyp:gears', | 3930 '../gears/gears.gyp:gears', |
| 3931 '../google_update/google_update.gyp:google_update', | 3931 '../google_update/google_update.gyp:google_update', |
| 3932 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 3932 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
| 3933 '../third_party/isimpledom/isimpledom.gyp:isimpledom', | 3933 '../third_party/isimpledom/isimpledom.gyp:isimpledom', |
| 3934 '../views/views.gyp:views', | 3934 '../views/views.gyp:*', |
|
sadrul
2011/02/09 05:52:28
Out of curiosity, are the changes in this file int
| |
| 3935 '../rlz/rlz.gyp:rlz_lib', | 3935 '../rlz/rlz.gyp:rlz_lib', |
| 3936 ], | 3936 ], |
| 3937 'export_dependent_settings': [ | 3937 'export_dependent_settings': [ |
| 3938 '../views/views.gyp:views', | 3938 '../views/views.gyp:*', |
| 3939 ], | 3939 ], |
| 3940 'direct_dependent_settings': { | 3940 'direct_dependent_settings': { |
| 3941 'link_settings': { | 3941 'link_settings': { |
| 3942 'libraries': [ | 3942 'libraries': [ |
| 3943 '-llocationapi.lib', | 3943 '-llocationapi.lib', |
| 3944 '-lsensorsapi.lib', | 3944 '-lsensorsapi.lib', |
| 3945 ], | 3945 ], |
| 3946 } | 3946 } |
| 3947 }, | 3947 }, |
| 3948 'sources': [ | 3948 'sources': [ |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 3979 # Exclude all of rlz. | 3979 # Exclude all of rlz. |
| 3980 ['exclude', '^browser/rlz/'], | 3980 ['exclude', '^browser/rlz/'], |
| 3981 ['exclude', '^browser/extensions/extension_rlz_module'], | 3981 ['exclude', '^browser/extensions/extension_rlz_module'], |
| 3982 | 3982 |
| 3983 # Exclude all of views. | 3983 # Exclude all of views. |
| 3984 ['exclude', '^browser/ui/views/'], | 3984 ['exclude', '^browser/ui/views/'], |
| 3985 ], | 3985 ], |
| 3986 'conditions': [ | 3986 'conditions': [ |
| 3987 ['OS=="linux" and toolkit_views==1',{ | 3987 ['OS=="linux" and toolkit_views==1',{ |
| 3988 'dependencies': [ | 3988 'dependencies': [ |
| 3989 '../views/views.gyp:views', | 3989 '../views/views.gyp:*', |
| 3990 ], | 3990 ], |
| 3991 'include_dirs': [ | 3991 'include_dirs': [ |
| 3992 '<(INTERMEDIATE_DIR)', | 3992 '<(INTERMEDIATE_DIR)', |
| 3993 '<(INTERMEDIATE_DIR)/chrome', | 3993 '<(INTERMEDIATE_DIR)/chrome', |
| 3994 ], | 3994 ], |
| 3995 'sources/': [ | 3995 'sources/': [ |
| 3996 ['include', '^browser/extensions/'], | 3996 ['include', '^browser/extensions/'], |
| 3997 # This exclude duplicates the one just above because of the | 3997 # This exclude duplicates the one just above because of the |
| 3998 # order of evaluation of the 'sources/' rule above, the | 3998 # order of evaluation of the 'sources/' rule above, the |
| 3999 # conditions, and this 'sources/' rule. | 3999 # conditions, and this 'sources/' rule. |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4601 ], | 4601 ], |
| 4602 }, | 4602 }, |
| 4603 ], | 4603 ], |
| 4604 } | 4604 } |
| 4605 | 4605 |
| 4606 # Local Variables: | 4606 # Local Variables: |
| 4607 # tab-width:2 | 4607 # tab-width:2 |
| 4608 # indent-tabs-mode:nil | 4608 # indent-tabs-mode:nil |
| 4609 # End: | 4609 # End: |
| 4610 # vim: set expandtab tabstop=2 shiftwidth=2: | 4610 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |