OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 'browser/web_data_service_factory.h', | 373 'browser/web_data_service_factory.h', |
374 'browser/web_resource/ios_web_resource_service.cc', | 374 'browser/web_resource/ios_web_resource_service.cc', |
375 'browser/web_resource/ios_web_resource_service.h', | 375 'browser/web_resource/ios_web_resource_service.h', |
376 'browser/xcallback_parameters.h', | 376 'browser/xcallback_parameters.h', |
377 'browser/xcallback_parameters.mm', | 377 'browser/xcallback_parameters.mm', |
378 ], | 378 ], |
379 'conditions': [ | 379 'conditions': [ |
380 ['enable_rlz==1', { | 380 ['enable_rlz==1', { |
381 'dependencies': [ | 381 'dependencies': [ |
382 '../../components/components.gyp:rlz', | 382 '../../components/components.gyp:rlz', |
| 383 'ios_chrome_browser_rlz', |
383 ], | 384 ], |
384 }], | 385 }], |
385 ], | 386 ], |
386 }, | 387 }, |
387 { | 388 { |
388 'target_name': 'ios_chrome_common', | 389 'target_name': 'ios_chrome_common', |
389 'type': 'static_library', | 390 'type': 'static_library', |
390 'include_dirs': [ | 391 'include_dirs': [ |
391 '../..', | 392 '../..', |
392 ], | 393 ], |
(...skipping 22 matching lines...) Expand all Loading... |
415 '../../ios/web/js_compile.gypi', | 416 '../../ios/web/js_compile.gypi', |
416 ], | 417 ], |
417 'link_settings': { | 418 'link_settings': { |
418 'mac_bundle_resources': [ | 419 'mac_bundle_resources': [ |
419 '<(SHARED_INTERMEDIATE_DIR)/bookmark_image_service_ios.js', | 420 '<(SHARED_INTERMEDIATE_DIR)/bookmark_image_service_ios.js', |
420 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', | 421 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', |
421 ], | 422 ], |
422 }, | 423 }, |
423 }, | 424 }, |
424 ], | 425 ], |
| 426 'conditions': [ |
| 427 ['enable_rlz_support==1', { |
| 428 'targets': [ |
| 429 { |
| 430 'target_name': 'ios_chrome_browser_rlz', |
| 431 'type': 'static_library', |
| 432 'sources': [ |
| 433 'browser/rlz/rlz_tracker_delegate_impl.cc', |
| 434 'browser/rlz/rlz_tracker_delegate_impl.h', |
| 435 ], |
| 436 'dependencies': [ |
| 437 '../../components/components.gyp:google_core_browser', |
| 438 '../../components/components.gyp:omnibox_browser', |
| 439 '../../components/components.gyp:rlz', |
| 440 '../../components/components.gyp:search_engines', |
| 441 '../../rlz/rlz.gyp:rlz_lib', |
| 442 ], |
| 443 }, |
| 444 ], |
| 445 }], |
| 446 ], |
425 } | 447 } |
OLD | NEW |