| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 # core unittests that are otherwise only accessible side-by-side with | 436 # core unittests that are otherwise only accessible side-by-side with |
| 437 # chrome via all/all.sln. | 437 # chrome via all/all.sln. |
| 438 'target_name': 'test_targets', | 438 'target_name': 'test_targets', |
| 439 'type': 'none', | 439 'type': 'none', |
| 440 'dependencies': [ | 440 'dependencies': [ |
| 441 '../base/base.gyp:base_unittests', | 441 '../base/base.gyp:base_unittests', |
| 442 '../content/content_shell_and_tests.gyp:content_browsertests', | 442 '../content/content_shell_and_tests.gyp:content_browsertests', |
| 443 '../content/content_shell_and_tests.gyp:content_shell', | 443 '../content/content_shell_and_tests.gyp:content_shell', |
| 444 '../content/content_shell_and_tests.gyp:content_unittests', | 444 '../content/content_shell_and_tests.gyp:content_unittests', |
| 445 '../net/net.gyp:net_unittests', | 445 '../net/net.gyp:net_unittests', |
| 446 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 446 '../ui/base/ui_base_tests.gyp:ui_unittests', | 447 '../ui/base/ui_base_tests.gyp:ui_unittests', |
| 447 ], | 448 ], |
| 448 }, | 449 }, |
| 449 { | 450 { |
| 450 'target_name': 'chrome_version_resources', | 451 'target_name': 'chrome_version_resources', |
| 451 'type': 'none', | 452 'type': 'none', |
| 452 'conditions': [ | 453 'conditions': [ |
| 453 ['branding == "Chrome"', { | 454 ['branding == "Chrome"', { |
| 454 'variables': { | 455 'variables': { |
| 455 'branding_path': 'app/theme/google_chrome/BRANDING', | 456 'branding_path': 'app/theme/google_chrome/BRANDING', |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 'service/service_utility_process_host.cc', | 778 'service/service_utility_process_host.cc', |
| 778 'service/service_utility_process_host.h', | 779 'service/service_utility_process_host.h', |
| 779 ], | 780 ], |
| 780 }], | 781 }], |
| 781 ], | 782 ], |
| 782 }, | 783 }, |
| 783 ], | 784 ], |
| 784 }], | 785 }], |
| 785 ], # 'conditions' | 786 ], # 'conditions' |
| 786 } | 787 } |
| OLD | NEW |