Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: chrome/chrome_common.gypi

Issue 215633004: Fix chrome_api and extensions_api gyp dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 ['OS != "ios"', { 399 ['OS != "ios"', {
400 'dependencies': [ 400 'dependencies': [
401 '<(DEPTH)/third_party/re2/re2.gyp:re2', 401 '<(DEPTH)/third_party/re2/re2.gyp:re2',
402 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api', 402 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api',
403 '<(DEPTH)/components/components.gyp:autofill_core_common', 403 '<(DEPTH)/components/components.gyp:autofill_core_common',
404 '<(DEPTH)/components/components.gyp:autofill_content_common', 404 '<(DEPTH)/components/components.gyp:autofill_content_common',
405 '<(DEPTH)/components/components.gyp:password_manager_core_common', 405 '<(DEPTH)/components/components.gyp:password_manager_core_common',
406 '<(DEPTH)/components/components.gyp:signin_core_common', 406 '<(DEPTH)/components/components.gyp:signin_core_common',
407 '<(DEPTH)/components/nacl.gyp:nacl_common', 407 '<(DEPTH)/components/nacl.gyp:nacl_common',
408 '<(DEPTH)/components/components.gyp:visitedlink_common', 408 '<(DEPTH)/components/components.gyp:visitedlink_common',
409 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api',
409 '<(DEPTH)/extensions/extensions.gyp:extensions_common', 410 '<(DEPTH)/extensions/extensions.gyp:extensions_common',
410 '<(DEPTH)/ipc/ipc.gyp:ipc', 411 '<(DEPTH)/ipc/ipc.gyp:ipc',
411 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h ', 412 '<(DEPTH)/third_party/adobe/flash/flash_player.gyp:flapper_version_h ',
412 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver sion_h', 413 '<(DEPTH)/third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_ver sion_h',
413 ], 414 ],
415 'export_dependent_settings': [
416 '<(DEPTH)/chrome/common/extensions/api/api.gyp:chrome_api',
417 ],
414 }, { # OS == ios 418 }, { # OS == ios
415 'sources/': [ 419 'sources/': [
416 ['exclude', '^common/child_process_'], 420 ['exclude', '^common/child_process_'],
417 ['exclude', '^common/chrome_content_client\\.cc$'], 421 ['exclude', '^common/chrome_content_client\\.cc$'],
418 ['exclude', '^common/chrome_version_info_posix\\.cc$'], 422 ['exclude', '^common/chrome_version_info_posix\\.cc$'],
419 ['exclude', '^common/common_message_generator\\.cc$'], 423 ['exclude', '^common/common_message_generator\\.cc$'],
420 ['exclude', '^common/common_param_traits'], 424 ['exclude', '^common/common_param_traits'],
421 ['exclude', '^common/custom_handlers/'], 425 ['exclude', '^common/custom_handlers/'],
422 ['exclude', '^common/extensions/'], 426 ['exclude', '^common/extensions/'],
423 ['exclude', '^common/logging_chrome\\.'], 427 ['exclude', '^common/logging_chrome\\.'],
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 'common/metrics/proto/user_action_event.proto', 730 'common/metrics/proto/user_action_event.proto',
727 ], 731 ],
728 'variables': { 732 'variables': {
729 'proto_in_dir': 'common/metrics/proto', 733 'proto_in_dir': 'common/metrics/proto',
730 'proto_out_dir': 'chrome/common/metrics/proto', 734 'proto_out_dir': 'chrome/common/metrics/proto',
731 }, 735 },
732 'includes': [ '../build/protoc.gypi' ], 736 'includes': [ '../build/protoc.gypi' ],
733 }, 737 },
734 ], 738 ],
735 } 739 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698