| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 # core unittests that are otherwise only accessible side-by-side with | 383 # core unittests that are otherwise only accessible side-by-side with |
| 384 # chrome via all/all.sln. | 384 # chrome via all/all.sln. |
| 385 'target_name': 'test_targets', | 385 'target_name': 'test_targets', |
| 386 'type': 'none', | 386 'type': 'none', |
| 387 'dependencies': [ | 387 'dependencies': [ |
| 388 '../base/base.gyp:base_unittests', | 388 '../base/base.gyp:base_unittests', |
| 389 '../content/content_shell_and_tests.gyp:content_browsertests', | 389 '../content/content_shell_and_tests.gyp:content_browsertests', |
| 390 '../content/content_shell_and_tests.gyp:content_shell', | 390 '../content/content_shell_and_tests.gyp:content_shell', |
| 391 '../content/content_shell_and_tests.gyp:content_unittests', | 391 '../content/content_shell_and_tests.gyp:content_unittests', |
| 392 '../net/net.gyp:net_unittests', | 392 '../net/net.gyp:net_unittests', |
| 393 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 393 '../ui/base/ui_base_tests.gyp:ui_unittests', | 394 '../ui/base/ui_base_tests.gyp:ui_unittests', |
| 394 ], | 395 ], |
| 395 }, | 396 }, |
| 396 { | 397 { |
| 397 'target_name': 'chrome_version_resources', | 398 'target_name': 'chrome_version_resources', |
| 398 'type': 'none', | 399 'type': 'none', |
| 399 'conditions': [ | 400 'conditions': [ |
| 400 ['branding == "Chrome"', { | 401 ['branding == "Chrome"', { |
| 401 'variables': { | 402 'variables': { |
| 402 'branding_path': 'app/theme/google_chrome/BRANDING', | 403 'branding_path': 'app/theme/google_chrome/BRANDING', |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 'service/service_utility_process_host.cc', | 725 'service/service_utility_process_host.cc', |
| 725 'service/service_utility_process_host.h', | 726 'service/service_utility_process_host.h', |
| 726 ], | 727 ], |
| 727 }], | 728 }], |
| 728 ], | 729 ], |
| 729 }, | 730 }, |
| 730 ], | 731 ], |
| 731 }], | 732 }], |
| 732 ], # 'conditions' | 733 ], # 'conditions' |
| 733 } | 734 } |
| OLD | NEW |