OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 3579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3590 'tools/build/win/precompiled_wtl.cc', | 3590 'tools/build/win/precompiled_wtl.cc', |
3591 ], | 3591 ], |
3592 'conditions': [ | 3592 'conditions': [ |
3593 ['OS=="linux"', { | 3593 ['OS=="linux"', { |
3594 'dependencies': [ | 3594 'dependencies': [ |
3595 '../build/linux/system.gyp:gtk', | 3595 '../build/linux/system.gyp:gtk', |
3596 ], | 3596 ], |
3597 'sources!': [ | 3597 'sources!': [ |
3598 # TODO(port) | 3598 # TODO(port) |
3599 'browser/login_prompt_uitest.cc', | 3599 'browser/login_prompt_uitest.cc', |
3600 'test/reliability/page_load_test.cc', | |
3601 'test/ui/layout_plugin_uitest.cc', | 3600 'test/ui/layout_plugin_uitest.cc', |
3602 ], | 3601 ], |
3603 }, { # else: OS != "linux" | 3602 }, { # else: OS != "linux" |
3604 'sources!': [ | 3603 'sources!': [ |
3605 'browser/process_singleton_linux_uitest.cc', | 3604 'browser/process_singleton_linux_uitest.cc', |
3606 ], | 3605 ], |
3607 }], | 3606 }], |
3608 ['OS=="linux" and toolkit_views==1', { | 3607 ['OS=="linux" and toolkit_views==1', { |
3609 'dependencies': [ | 3608 'dependencies': [ |
3610 '../views/views.gyp:views', | 3609 '../views/views.gyp:views', |
(...skipping 1788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5399 # Use outputs of this action as inputs for the main target build. | 5398 # Use outputs of this action as inputs for the main target build. |
5400 # Seems as a misnomer but makes this happy on Linux (scons). | 5399 # Seems as a misnomer but makes this happy on Linux (scons). |
5401 'process_outputs_as_sources': 1, | 5400 'process_outputs_as_sources': 1, |
5402 }, | 5401 }, |
5403 ], # 'actions' | 5402 ], # 'actions' |
5404 }, | 5403 }, |
5405 ] | 5404 ] |
5406 }], | 5405 }], |
5407 ], # 'conditions' | 5406 ], # 'conditions' |
5408 } | 5407 } |
OLD | NEW |