| 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 { | 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 ['remoting==1', { | 496 ['remoting==1', { |
| 497 'dependencies': [ | 497 'dependencies': [ |
| 498 '../remoting/remoting.gyp:remoting_client_plugin', | 498 '../remoting/remoting.gyp:remoting_client_plugin', |
| 499 ], | 499 ], |
| 500 }], | 500 }], |
| 501 ['enable_automation==0', { | 501 ['enable_automation==0', { |
| 502 'sources/': [ | 502 'sources/': [ |
| 503 ['exclude', '^common/automation_'] | 503 ['exclude', '^common/automation_'] |
| 504 ] | 504 ] |
| 505 }], | 505 }], |
| 506 ['enable_web_intents==0', { |
| 507 'sources!': [ |
| 508 'common/extensions/web_intents_handler.cc', |
| 509 'common/extensions/web_intents_handler.h', |
| 510 ], |
| 511 }], |
| 506 ['use_system_nspr==1', { | 512 ['use_system_nspr==1', { |
| 507 'dependencies': [ | 513 'dependencies': [ |
| 508 '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr', | 514 '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr', |
| 509 ], | 515 ], |
| 510 }], | 516 }], |
| 511 ], | 517 ], |
| 512 'target_conditions': [ | 518 'target_conditions': [ |
| 513 ['OS == "ios"', { | 519 ['OS == "ios"', { |
| 514 'sources/': [ | 520 'sources/': [ |
| 515 # Pull in specific Mac files for iOS (which have been filtered out | 521 # Pull in specific Mac files for iOS (which have been filtered out |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 'common/metrics/proto/user_action_event.proto', | 692 'common/metrics/proto/user_action_event.proto', |
| 687 ], | 693 ], |
| 688 'variables': { | 694 'variables': { |
| 689 'proto_in_dir': 'common/metrics/proto', | 695 'proto_in_dir': 'common/metrics/proto', |
| 690 'proto_out_dir': 'chrome/common/metrics/proto', | 696 'proto_out_dir': 'chrome/common/metrics/proto', |
| 691 }, | 697 }, |
| 692 'includes': [ '../build/protoc.gypi' ], | 698 'includes': [ '../build/protoc.gypi' ], |
| 693 }, | 699 }, |
| 694 ], | 700 ], |
| 695 } | 701 } |
| OLD | NEW |