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

Side by Side Diff: ios/chrome/ios_chrome.gyp

Issue 1242743003: Implements RLZTrackerDelegate on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « ios/chrome/browser/rlz/rlz_tracker_delegate_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 'browser/web_data_service_factory.h', 375 'browser/web_data_service_factory.h',
376 'browser/web_resource/ios_web_resource_service.cc', 376 'browser/web_resource/ios_web_resource_service.cc',
377 'browser/web_resource/ios_web_resource_service.h', 377 'browser/web_resource/ios_web_resource_service.h',
378 'browser/xcallback_parameters.h', 378 'browser/xcallback_parameters.h',
379 'browser/xcallback_parameters.mm', 379 'browser/xcallback_parameters.mm',
380 ], 380 ],
381 'conditions': [ 381 'conditions': [
382 ['enable_rlz==1', { 382 ['enable_rlz==1', {
383 'dependencies': [ 383 'dependencies': [
384 '../../components/components.gyp:rlz', 384 '../../components/components.gyp:rlz',
385 'ios_chrome_browser_rlz',
385 ], 386 ],
386 }], 387 }],
387 ], 388 ],
388 }, 389 },
389 { 390 {
390 'target_name': 'ios_chrome_common', 391 'target_name': 'ios_chrome_common',
391 'type': 'static_library', 392 'type': 'static_library',
392 'include_dirs': [ 393 'include_dirs': [
393 '../..', 394 '../..',
394 ], 395 ],
(...skipping 22 matching lines...) Expand all
417 '../../ios/web/js_compile.gypi', 418 '../../ios/web/js_compile.gypi',
418 ], 419 ],
419 'link_settings': { 420 'link_settings': {
420 'mac_bundle_resources': [ 421 'mac_bundle_resources': [
421 '<(SHARED_INTERMEDIATE_DIR)/bookmark_image_service_ios.js', 422 '<(SHARED_INTERMEDIATE_DIR)/bookmark_image_service_ios.js',
422 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js', 423 '<(SHARED_INTERMEDIATE_DIR)/find_in_page.js',
423 ], 424 ],
424 }, 425 },
425 }, 426 },
426 ], 427 ],
428 'conditions': [
429 ['enable_rlz_support==1', {
430 'targets': [
431 {
432 'target_name': 'ios_chrome_browser_rlz',
433 'type': 'static_library',
434 'sources': [
435 'browser/rlz/rlz_tracker_delegate_impl.cc',
436 'browser/rlz/rlz_tracker_delegate_impl.h',
437 ],
438 'dependencies': [
439 '../../components/components.gyp:google_core_browser',
440 '../../components/components.gyp:omnibox_browser',
441 '../../components/components.gyp:rlz',
442 '../../components/components.gyp:search_engines',
443 '../../rlz/rlz.gyp:rlz_lib',
444 ],
445 },
446 ],
447 }],
448 ],
427 } 449 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/rlz/rlz_tracker_delegate_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698