| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables' : { | 5 'variables' : { |
| 6 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
| 7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
| 8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
| 9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
| 10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 }, | 471 }, |
| 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 473 'msvs_disabled_warnings': [ 4267, ], | 473 'msvs_disabled_warnings': [ 4267, ], |
| 474 }, { # else: OS != "win" | 474 }, { # else: OS != "win" |
| 475 'sources!': [ | 475 'sources!': [ |
| 476 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', | 476 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', |
| 477 'browser/ui/views/message_center/web_notification_tray_win_browserte
st.cc', | 477 'browser/ui/views/message_center/web_notification_tray_win_browserte
st.cc', |
| 478 'browser/ui/views/native_widget_win_interactive_uitest.cc', | 478 'browser/ui/views/native_widget_win_interactive_uitest.cc', |
| 479 ], | 479 ], |
| 480 }], # OS != "win" | 480 }], # OS != "win" |
| 481 ['enable_message_center==0', { |
| 482 'sources!': [ |
| 483 'browser/ui/views/message_center/web_notification_tray_win_browserte
st.cc', |
| 484 ], |
| 485 }], # enable_message_center |
| 481 ], # conditions | 486 ], # conditions |
| 482 }, | 487 }, |
| 483 { | 488 { |
| 484 # Third-party support sources for chromedriver_lib. | 489 # Third-party support sources for chromedriver_lib. |
| 485 'target_name': 'chromedriver_support', | 490 'target_name': 'chromedriver_support', |
| 486 'type': 'static_library', | 491 'type': 'static_library', |
| 487 'sources': [ | 492 'sources': [ |
| 488 '../third_party/mongoose/mongoose.c', | 493 '../third_party/mongoose/mongoose.c', |
| 489 '../third_party/mongoose/mongoose.h', | 494 '../third_party/mongoose/mongoose.h', |
| 490 '../third_party/webdriver/atoms.cc', | 495 '../third_party/webdriver/atoms.cc', |
| (...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2023 # build time dependency. | 2028 # build time dependency. |
| 2024 '../v8/tools/gyp/v8.gyp:v8_shell#host', | 2029 '../v8/tools/gyp/v8.gyp:v8_shell#host', |
| 2025 '../webkit/webkit.gyp:copy_npapi_test_plugin', | 2030 '../webkit/webkit.gyp:copy_npapi_test_plugin', |
| 2026 ], | 2031 ], |
| 2027 }], | 2032 }], |
| 2028 ['enable_app_list==0', { | 2033 ['enable_app_list==0', { |
| 2029 'sources/': [ | 2034 'sources/': [ |
| 2030 ['exclude', '^browser/ui/app_list/'], | 2035 ['exclude', '^browser/ui/app_list/'], |
| 2031 ], | 2036 ], |
| 2032 }], | 2037 }], |
| 2038 ['enable_message_center==0', { |
| 2039 'sources!': [ |
| 2040 'browser/notifications/message_center_notifications_browsertest.cc', |
| 2041 ], |
| 2042 }], |
| 2033 ['enable_plugins==1', { | 2043 ['enable_plugins==1', { |
| 2034 'dependencies': [ | 2044 'dependencies': [ |
| 2035 # Runtime dependency. | 2045 # Runtime dependency. |
| 2036 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', | 2046 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter', |
| 2037 '../webkit/support/webkit_support.gyp:clearkeycdmadapter', | 2047 '../webkit/support/webkit_support.gyp:clearkeycdmadapter', |
| 2038 ], | 2048 ], |
| 2039 }], | 2049 }], |
| 2040 ['chromeos==1', { | 2050 ['chromeos==1', { |
| 2041 'sources!': [ | 2051 'sources!': [ |
| 2042 'browser/ui/webui/options/managed_user_set_passphrase_browsertest.js
', | 2052 'browser/ui/webui/options/managed_user_set_passphrase_browsertest.js
', |
| (...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3408 # more details. | 3418 # more details. |
| 3409 'DebugInformationFormat': '3', | 3419 'DebugInformationFormat': '3', |
| 3410 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 3420 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
| 3411 }, | 3421 }, |
| 3412 }, | 3422 }, |
| 3413 }, | 3423 }, |
| 3414 ], | 3424 ], |
| 3415 }], | 3425 }], |
| 3416 ], # 'conditions' | 3426 ], # 'conditions' |
| 3417 } | 3427 } |
| OLD | NEW |