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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', | 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', |
8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', | 8 'additional_modules_list_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/i
nternal/additional_modules_list.txt', |
9 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], | 9 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], |
10 }, | 10 }, |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', | 387 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', |
388 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_strings', | 388 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_strings', |
389 ], | 389 ], |
390 }], | 390 }], |
391 ['use_ash==1', { | 391 ['use_ash==1', { |
392 'dependencies': [ | 392 'dependencies': [ |
393 '<(DEPTH)/ash/ash_strings.gyp:ash_strings', | 393 '<(DEPTH)/ash/ash_strings.gyp:ash_strings', |
394 '<(DEPTH)/ash/ash.gyp:ash_resources', | 394 '<(DEPTH)/ash/ash.gyp:ash_resources', |
395 ], | 395 ], |
396 }], | 396 }], |
| 397 ['enable_autofill_dialog==1 and OS!="android"', { |
| 398 'dependencies': [ |
| 399 '<(DEPTH)/third_party/libaddressinput/libaddressinput.gyp:libaddress
input_strings', |
| 400 ], |
| 401 }], |
397 ['OS != "mac" and OS != "ios"', { | 402 ['OS != "mac" and OS != "ios"', { |
398 # Copy pak files to the product directory. These files will be picked | 403 # Copy pak files to the product directory. These files will be picked |
399 # up by the following installer scripts: | 404 # up by the following installer scripts: |
400 # - Windows: chrome/installer/mini_installer/chrome.release | 405 # - Windows: chrome/installer/mini_installer/chrome.release |
401 # - Linux: chrome/installer/linux/internal/common/installer.include | 406 # - Linux: chrome/installer/linux/internal/common/installer.include |
402 # Ensure that the above scripts are updated when adding or removing | 407 # Ensure that the above scripts are updated when adding or removing |
403 # pak files. | 408 # pak files. |
404 # Copying files to the product directory is not needed on the Mac | 409 # Copying files to the product directory is not needed on the Mac |
405 # since the framework build phase will copy them into the framework | 410 # since the framework build phase will copy them into the framework |
406 # bundle directly. | 411 # bundle directly. |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 '<(generator_path)', | 505 '<(generator_path)', |
501 'credits', | 506 'credits', |
502 '<(about_credits_file)', | 507 '<(about_credits_file)', |
503 ], | 508 ], |
504 'message': 'Generating about:credits', | 509 'message': 'Generating about:credits', |
505 }, | 510 }, |
506 ], | 511 ], |
507 }, | 512 }, |
508 ], # targets | 513 ], # targets |
509 } | 514 } |
OLD | NEW |