| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 # File lists shared with GN build. | 7 # File lists shared with GN build. |
| 8 'chrome_common_sources': [ | 8 'chrome_common_sources': [ |
| 9 'common/all_messages.h', | 9 'common/all_messages.h', |
| 10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'common/multi_process_lock.h', | 80 'common/multi_process_lock.h', |
| 81 'common/multi_process_lock_linux.cc', | 81 'common/multi_process_lock_linux.cc', |
| 82 'common/multi_process_lock_mac.cc', | 82 'common/multi_process_lock_mac.cc', |
| 83 'common/multi_process_lock_win.cc', | 83 'common/multi_process_lock_win.cc', |
| 84 'common/omnibox_focus_state.h', | 84 'common/omnibox_focus_state.h', |
| 85 'common/partial_circular_buffer.cc', | 85 'common/partial_circular_buffer.cc', |
| 86 'common/partial_circular_buffer.h', | 86 'common/partial_circular_buffer.h', |
| 87 'common/pref_names_util.cc', | 87 'common/pref_names_util.cc', |
| 88 'common/pref_names_util.h', | 88 'common/pref_names_util.h', |
| 89 'common/prerender_types.h', | 89 'common/prerender_types.h', |
| 90 'common/print_messages.cc', | |
| 91 'common/print_messages.h', | |
| 92 'common/profiling.cc', | 90 'common/profiling.cc', |
| 93 'common/profiling.h', | 91 'common/profiling.h', |
| 94 'common/ref_counted_util.h', | 92 'common/ref_counted_util.h', |
| 95 'common/render_messages.cc', | 93 'common/render_messages.cc', |
| 96 'common/render_messages.h', | 94 'common/render_messages.h', |
| 97 'common/safe_browsing/safebrowsing_messages.h', | 95 'common/safe_browsing/safebrowsing_messages.h', |
| 98 'common/search_provider.h', | 96 'common/search_provider.h', |
| 99 'common/search_types.h', | 97 'common/search_types.h', |
| 100 'common/search_urls.cc', | 98 'common/search_urls.cc', |
| 101 'common/search_urls.h', | 99 'common/search_urls.h', |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 'dependencies': [ | 404 'dependencies': [ |
| 407 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h
', | 405 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h
', |
| 408 ], | 406 ], |
| 409 'sources': [ | 407 'sources': [ |
| 410 'common/pepper_flash.cc', | 408 'common/pepper_flash.cc', |
| 411 'common/pepper_flash.h', | 409 'common/pepper_flash.h', |
| 412 'common/pepper_permission_util.cc', | 410 'common/pepper_permission_util.cc', |
| 413 'common/pepper_permission_util.h', | 411 'common/pepper_permission_util.h', |
| 414 ], | 412 ], |
| 415 }], | 413 }], |
| 416 ['enable_basic_printing==0 and enable_print_preview==0', { | 414 ['enable_basic_printing==1 or enable_print_preview==1', { |
| 417 'sources!': [ | |
| 418 'common/print_messages.cc', | |
| 419 'common/print_messages.h', | |
| 420 ] | |
| 421 }, { | |
| 422 'dependencies': [ | 415 'dependencies': [ |
| 416 '<(DEPTH)/components/components.gyp:printing_common', |
| 423 '<(DEPTH)/printing/printing.gyp:printing', | 417 '<(DEPTH)/printing/printing.gyp:printing', |
| 424 ], | 418 ], |
| 425 }], | 419 }], |
| 426 ['enable_print_preview==1', { | 420 ['enable_print_preview==1', { |
| 427 'sources': [ '<@(chrome_common_service_process_sources)' ], | 421 'sources': [ '<@(chrome_common_service_process_sources)' ], |
| 428 }], | 422 }], |
| 429 ['enable_service_discovery==1', { | 423 ['enable_service_discovery==1', { |
| 430 'sources' : [ | 424 'sources' : [ |
| 431 'common/local_discovery/service_discovery_client.cc', | 425 'common/local_discovery/service_discovery_client.cc', |
| 432 'common/local_discovery/service_discovery_client.h', | 426 'common/local_discovery/service_discovery_client.h', |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 'common/safe_browsing/csd.proto' | 667 'common/safe_browsing/csd.proto' |
| 674 ], | 668 ], |
| 675 'variables': { | 669 'variables': { |
| 676 'proto_in_dir': 'common/safe_browsing', | 670 'proto_in_dir': 'common/safe_browsing', |
| 677 'proto_out_dir': 'chrome/common/safe_browsing', | 671 'proto_out_dir': 'chrome/common/safe_browsing', |
| 678 }, | 672 }, |
| 679 'includes': [ '../build/protoc.gypi' ], | 673 'includes': [ '../build/protoc.gypi' ], |
| 680 }, | 674 }, |
| 681 ], | 675 ], |
| 682 } | 676 } |
| OLD | NEW |