| OLD | NEW |
| 1 { | 1 { |
| 2 'includes': [ | 2 'includes': [ |
| 3 'extensions_tests.gypi', | 3 'extensions_tests.gypi', |
| 4 ], | 4 ], |
| 5 'variables': { | 5 'variables': { |
| 6 # Product name is used for Mac bundle. | 6 # Product name is used for Mac bundle. |
| 7 'app_shell_product_name': 'App Shell', | 7 'app_shell_product_name': 'App Shell', |
| 8 # The version is high enough to be supported by Omaha (at least 31) | 8 # The version is high enough to be supported by Omaha (at least 31) |
| 9 # but fake enough to be obviously not a Chrome release. | 9 # but fake enough to be obviously not a Chrome release. |
| 10 'app_shell_version': '38.1234.5678.9', | 10 'app_shell_version': '38.1234.5678.9', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 33 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 34 'common/api/api.gyp:cast_channel_proto', | 34 'common/api/api.gyp:cast_channel_proto', |
| 35 'extensions.gyp:extensions_browser', | 35 'extensions.gyp:extensions_browser', |
| 36 'extensions.gyp:extensions_common', | 36 'extensions.gyp:extensions_common', |
| 37 'extensions.gyp:extensions_renderer', | 37 'extensions.gyp:extensions_renderer', |
| 38 'extensions.gyp:extensions_shell_and_test_pak', | 38 'extensions.gyp:extensions_shell_and_test_pak', |
| 39 'extensions.gyp:extensions_test_support', | 39 'extensions.gyp:extensions_test_support', |
| 40 'extensions.gyp:extensions_utility', | 40 'extensions.gyp:extensions_utility', |
| 41 'extensions_resources.gyp:extensions_resources', | 41 'extensions_resources.gyp:extensions_resources', |
| 42 'extensions_strings.gyp:extensions_strings', | 42 'extensions_strings.gyp:extensions_strings', |
| 43 # Only needed at runtime. | |
| 44 '../third_party/mesa/mesa.gyp:osmesa', | |
| 45 ], | 43 ], |
| 46 # Needed for third_party libraries like leveldb. | 44 # Needed for third_party libraries like leveldb. |
| 47 'include_dirs': [ | 45 'include_dirs': [ |
| 48 '..', | 46 '..', |
| 49 ], | 47 ], |
| 50 'sources': [ | 48 'sources': [ |
| 51 '<@(extensions_unittests_sources)', | 49 '<@(extensions_unittests_sources)', |
| 52 ], | 50 ], |
| 53 # Disable c4267 warnings until we fix size_t to int truncations. | 51 # Disable c4267 warnings until we fix size_t to int truncations. |
| 54 'msvs_disabled_warnings': [ 4267, ], | 52 'msvs_disabled_warnings': [ 4267, ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 77 '<(DEPTH)/components/components.gyp:guest_view_browser', | 75 '<(DEPTH)/components/components.gyp:guest_view_browser', |
| 78 '<(DEPTH)/components/components.gyp:guest_view_renderer', | 76 '<(DEPTH)/components/components.gyp:guest_view_renderer', |
| 79 '<(DEPTH)/components/components.gyp:guest_view_test_support', | 77 '<(DEPTH)/components/components.gyp:guest_view_test_support', |
| 80 '<(DEPTH)/content/content.gyp:content_app_both', | 78 '<(DEPTH)/content/content.gyp:content_app_both', |
| 81 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo
rt', | 79 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo
rt', |
| 82 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 80 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
| 83 '<(DEPTH)/device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', | 81 '<(DEPTH)/device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', |
| 84 '<(DEPTH)/device/usb/usb.gyp:device_usb_mocks', | 82 '<(DEPTH)/device/usb/usb.gyp:device_usb_mocks', |
| 85 '<(DEPTH)/testing/gmock.gyp:gmock', | 83 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 86 '<(DEPTH)/testing/gtest.gyp:gtest', | 84 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 87 # Only needed at runtime. | |
| 88 '../third_party/mesa/mesa.gyp:osmesa', | |
| 89 ], | 85 ], |
| 90 'defines': [ | 86 'defines': [ |
| 91 'HAS_OUT_OF_PROC_TEST_RUNNER', | 87 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 92 ], | 88 ], |
| 93 'sources': [ | 89 'sources': [ |
| 94 '<@(extensions_browsertests_sources)', | 90 '<@(extensions_browsertests_sources)', |
| 95 ], | 91 ], |
| 96 'conditions': [ | 92 'conditions': [ |
| 97 ['OS=="win" and win_use_allocator_shim==1', { | 93 ['OS=="win" and win_use_allocator_shim==1', { |
| 98 'dependencies': [ | 94 'dependencies': [ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 'dependencies': [ | 143 'dependencies': [ |
| 148 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 144 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 149 ], | 145 ], |
| 150 }], | 146 }], |
| 151 ], | 147 ], |
| 152 } | 148 } |
| 153 ], | 149 ], |
| 154 }], | 150 }], |
| 155 ], | 151 ], |
| 156 } | 152 } |
| OLD | NEW |